mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
trying lucia
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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}
|
||||
@@ -1,4 +1,3 @@
|
||||
import { psa } from "@schemas/schema";
|
||||
import Image from "next/image";
|
||||
import Link from "next/link";
|
||||
|
||||
|
||||
@@ -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>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user