Merge version_2 into main #2
@@ -1,55 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "TechVault - Premium Gaming & Tech Store", description: "Discover cutting-edge gaming PCs, peripherals, and tech equipment at TechVault. Premium quality products for gamers and tech enthusiasts.", keywords: "gaming PC, gaming peripherals, gaming mouse, mechanical keyboard, graphics card, gaming monitor", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "TechVault - Premium Gaming & Tech", description: "Shop the latest gaming PCs, peripherals, and technology with TechVault. Premium quality for serious gamers.", type: "website", siteName: "TechVault", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZoqQ1nuR4E6VJXdZc4600cDY1/a-sleek-modern-gaming-pc-setup-on-a-desk-1772809823513-0938b250.png", alt: "Gaming Setup"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "TechVault - Premium Gaming & Tech", description: "Shop gaming PCs, peripherals, and cutting-edge technology", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZoqQ1nuR4E6VJXdZc4600cDY1/a-sleek-modern-gaming-pc-setup-on-a-desk-1772809823513-0938b250.png"],
|
||||
},
|
||||
};
|
||||
title: "TechVault - Premium Gaming & Tech", description: "Discover cutting-edge gaming peripherals, powerful computers, and innovative tech"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -125,7 +125,7 @@ export default function LandingPage() {
|
||||
{ id: "5", name: "Emma Taylor", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZoqQ1nuR4E6VJXdZc4600cDY1/a-professional-portrait-photo-of-a-femal-1772809822179-935ef2ba.png", imageAlt: "Emma Taylor" },
|
||||
{ id: "6", name: "David Kumar", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZoqQ1nuR4E6VJXdZc4600cDY1/a-professional-portrait-photo-of-a-male--1772809823468-f5d0a603.png", imageAlt: "David Kumar" }
|
||||
]}
|
||||
cardTitle="Over 50,000 satisfied customers trust TechVault for premium gaming and tech products"
|
||||
cardTitle="⭐ 4.9/5 stars from 50,000+ reviews • Fast shipping & hassle-free returns"
|
||||
cardTag="Customer Reviews"
|
||||
cardTagIcon={Heart}
|
||||
cardAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user