6 Commits

Author SHA1 Message Date
b2bd5b0d94 Update src/app/page.tsx 2026-03-09 07:03:51 +00:00
5625bd2783 Update src/app/layout.tsx 2026-03-09 07:03:51 +00:00
18a54fad94 Merge version_2 into main
Merge version_2 into main
2026-03-09 07:02:28 +00:00
7dbfd6c803 Update src/app/page.tsx 2026-03-09 07:02:24 +00:00
cb562bcf47 Update src/app/layout.tsx 2026-03-09 07:02:24 +00:00
b320e62365 Merge version_1 into main
Merge version_1 into main
2026-03-09 07:00:38 +00:00
2 changed files with 10 additions and 39 deletions

View File

@@ -1,48 +1,20 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Fashion Club - Treasure Store with Everything You Need", description: "Discover thousands of products in one place: fashion, home essentials, electronics & accessories at unbeatable prices. Your treasure hunt starts here.", keywords: "fashion store, home essentials, affordable shopping, Cosenza retail, student shopping, bazaar store, treasure hunt shopping", openGraph: {
title: "Fashion Club - The Treasure Store", description: "Everything you need at incredible prices. Fashion, home, electronics, and thousands of everyday finds.", type: "website", siteName: "Fashion Club", images: [
{
url: "http://img.b2bpic.net/free-photo/paper-bags-standing-shop-floor_23-2147688410.jpg", alt: "Fashion Club store interior - thousands of products"},
],
},
twitter: {
card: "summary_large_image", title: "Fashion Club - The Treasure Store", description: "Discover everything you need: fashion, home, electronics at unbeatable prices.", images: ["http://img.b2bpic.net/free-photo/paper-bags-standing-shop-floor_23-2147688410.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -190,8 +190,8 @@ export default function LandingPage() {
<div id="newsletter" data-section="newsletter">
<ContactFaq
ctaTitle="Join the Fashion Club Community"
ctaDescription="Be the first to discover new arrivals and exclusive in-store finds."
ctaButton={{ text: "Join Now", href: "#" }}
ctaDescription="Get notified of daily new arrivals and exclusive in-store treasures before they're gone"
ctaButton={{ text: "Get Updates on New Arrivals", href: "#" }}
ctaIcon={Mail}
faqs={[
{
@@ -251,4 +251,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}