10 Commits

Author SHA1 Message Date
61a33d9629 Merge version_2 into main
Merge version_2 into main
2026-03-06 15:32:23 +00:00
eb3e8198d9 Update src/app/page.tsx 2026-03-06 15:32:18 +00:00
0c8d872e26 Update src/app/layout.tsx 2026-03-06 15:32:18 +00:00
9e104755ec Merge version_1 into main
Merge version_1 into main
2026-03-06 15:29:53 +00:00
25d3dd56e5 Merge version_1 into main
Merge version_1 into main
2026-03-06 15:27:51 +00:00
7d698a4be2 Merge version_1 into main
Merge version_1 into main
2026-03-06 15:26:24 +00:00
a2bcf79c4a Merge version_1 into main
Merge version_1 into main
2026-03-06 15:24:53 +00:00
0a2cff3166 Merge version_1 into main
Merge version_1 into main
2026-03-06 15:23:27 +00:00
9bc9c11b49 Merge version_1 into main
Merge version_1 into main
2026-03-06 15:21:47 +00:00
da3f60dbf2 Merge version_1 into main
Merge version_1 into main
2026-03-06 15:20:26 +00:00
2 changed files with 9 additions and 66 deletions

View File

@@ -1,76 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "TechLaptop Marketplace - Find Your Perfect Laptop Fast",
description: "Browse, compare, and buy the best laptops for work, gaming, and creative projects. Secure checkout, expert guidance, and 30-day guarantee.",
keywords: "laptop marketplace, buy laptops online, laptop comparison, gaming laptops, ultrabooks, business laptops",
metadataBase: new URL("https://techlaptoponline.com"),
alternates: {
canonical: "https://techlaptoponline.com",
},
openGraph: {
title: "TechLaptop Marketplace - Find Your Perfect Laptop Fast",
description: "Browse, compare, and buy the best laptops. Expert guidance, secure checkout, 50K+ satisfied customers.",
url: "https://techlaptoponline.com",
siteName: "TechLaptop",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZq3AkZrFXbL1VS6nk3OHopger/a-stunning-product-showcase-of-premium-l-1772810362262-8740bfe0.png",
alt: "Premium laptop collection",
},
],
},
twitter: {
card: "summary_large_image",
title: "TechLaptop Marketplace - Find Your Perfect Laptop",
description: "Compare specs, read reviews, and buy with confidence. Secure checkout in seconds.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZq3AkZrFXbL1VS6nk3OHopger/a-stunning-product-showcase-of-premium-l-1772810362262-8740bfe0.png",
],
},
robots: {
index: true,
follow: true,
},
};
title: "TechLaptop - Find Your Perfect Laptop", description: "Compare specs, read reviews, and buy with confidence. Secure checkout in seconds."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1438,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -108,7 +108,7 @@ export default function HomePage() {
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZq3AkZrFXbL1VS6nk3OHopger/professional-headshot-of-a-diverse-perso-1772810361300-2d579a38.png", alt: "Customer 3"
},
]}
avatarText="Trusted by 50,000+ buyers"
avatarText="Trusted by 50,000+ buyers | 4.9★ rating"
marqueeItems={[
{ type: "text", text: "Dell" },
{ type: "text", text: "HP" },
@@ -306,4 +306,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}