4 Commits

Author SHA1 Message Date
5fc0346913 Update src/app/layout.tsx 2026-03-09 05:43:31 +00:00
871e59e9dd Update src/app/page.tsx 2026-03-09 05:42:45 +00:00
35d69def37 Update src/app/layout.tsx 2026-03-09 05:42:45 +00:00
512495345b Merge version_1 into main
Merge version_1 into main
2026-03-09 05:41:28 +00:00
2 changed files with 9 additions and 36 deletions

View File

@@ -1,47 +1,20 @@
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 "./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 publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Premium Product Showcase | Your Shop", description: "Explore our curated collection of premium products. Each item is carefully selected for quality, style, and craftsmanship.", keywords: "premium products, curated collection, luxury items, product showcase, quality goods", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Premium Product Collection", description: "Discover our carefully curated selection of high-quality products.", siteName: "Your Shop", type: "website"},
title: "Your Shop - Premium Collection", description: "Explore our curated selection of premium products"
};
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>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -50,7 +50,8 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/high-angle-orange-slices-drinkl_23-2149418285.jpg"
imageAlt="Premium product showcase"
buttons={[
{ text: "Browse Collection", href: "#products" }
{ text: "Browse Collection", href: "#products" },
{ text: "View Gallery", href: "#featured" }
]}
/>
</div>