trying lucia

This commit is contained in:
2025-01-25 00:08:51 -05:00
parent 9931980114
commit 84e5c9e399
61 changed files with 9587 additions and 165 deletions

View File

@@ -1,6 +1,6 @@
import Header from "../Header";
import Hero from "../Hero";
import FeaturesSection from "../FeaturesSection";
import Header from "@components/Header";
import Hero from "@components/Hero";
import FeaturesSection from "@components/FeaturesSection";
import About from "@siteInfo/About/page";
import Contact from "@siteInfo/Contact/page";
import Footer from "@siteInfo/Footer/page";

View File

@@ -1,5 +1,5 @@
'use server'
export const TestProductPage = async (props: any) => {
export const ProductPage = async (props: any) => {
return (
<div className="fixed pin z-50 overflow-auto bg-smoke-light flex">
{props.data.modelnumber}

View File

@@ -1,4 +1,3 @@
import { psa } from "@schemas/schema";
import Image from "next/image";
import Link from "next/link";

View File

@@ -3,7 +3,7 @@ import { PlusCircleIcon } from "@heroicons/react/20/solid";
import Image from "next/image";
import Link from "next/link";
import { TestProductPage } from "@src/components/TestProductPage";
import { ProductPage } from "@src/components/ProductPage";
export default async function SortTable(props: any) {
return (
@@ -128,7 +128,7 @@ export default async function SortTable(props: any) {
</button>
</td>
<td style={{display:'none'}}>
<TestProductPage data={item}></TestProductPage>
<ProductPage data={item}></ProductPage>
</td>
</tr>
))}