more fises

This commit is contained in:
2024-12-18 13:51:12 -05:00
parent 12493feb6e
commit 587f183ffa
13 changed files with 112 additions and 67 deletions

View File

@@ -1,10 +1,8 @@
import React, { Component } from 'react';
import constants from '@lib/constants';
import Typography from '@mui/material/Typography';
import MuiLink from '@mui/material/Link';
import styles from './styles.module.css'
import Link from 'next/link'
import styled from '@emotion/styled'
import styles from './styles.module.css';
import Link from 'next/link';
import styled from '@emotion/styled';
export default class Copyright extends Component {

View File

@@ -5,7 +5,7 @@ import styles from './styles.module.css';
import constants from '@lib/constants'
import {SITE_CONT_TYPE} from '@lib/constants'
export default function Disclosure(props) {
export default function Disclosure(props:any) {
return (

View File

@@ -3,10 +3,13 @@ import { PlusCircleIcon } from "@heroicons/react/20/solid";
import Image from "next/image";
import Link from "next/link";
import { TestProductPage } from "../../app/components/TestProductPage";
import { Suspense } from "react";
export default async function SortTable(props: any) {
return (
<div className="pb-12">
<div className="mt-8 flow-root">
<div className="-mx-4 -my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
<div className="inline-block min-w-full py-2 align-middle sm:px-6 lg:px-8">
@@ -125,13 +128,18 @@ export default async function SortTable(props: any) {
/>
</button>
</td>
</tr>
<td style={{display:'none'}}>
<TestProductPage data={item}></TestProductPage>
</td>
</tr>
))}
</tbody>
</table>
</div>
</div>
</div>
</div>
);
}

View File

@@ -1,3 +1,5 @@
import Link from "next/link";
export default function Newsletter() {
return (
<div className="bg-gray-900 py-16 sm:py-24 lg:py-32">
@@ -28,9 +30,9 @@ export default function Newsletter() {
</div>
<p className="mt-4 text-sm/6 text-gray-300">
We care about your data. Read our{' '}
<a href="#" className="font-semibold text-white">
<Link href="/PP" className="font-semibold text-white">
privacy&nbsp;policy
</a>
</Link>
.
</p>
</form>