6 Commits

Author SHA1 Message Date
a07ae914cc Merge version_3 into main
Merge version_3 into main
2026-03-08 06:01:33 +00:00
b834fb4d6f Update src/app/page.tsx 2026-03-08 06:01:29 +00:00
7d33298c26 Merge version_2 into main
Merge version_2 into main
2026-03-08 06:00:13 +00:00
a4b5a7c3fb Update src/app/page.tsx 2026-03-08 06:00:09 +00:00
1f0a2450f4 Update src/app/layout.tsx 2026-03-08 06:00:09 +00:00
6fc83a733e Merge version_1 into main
Merge version_1 into main
2026-03-08 05:58:49 +00:00
2 changed files with 8 additions and 47 deletions

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Minimal - Timeless Clothing Collection", description: "Discover minimalist, sustainable clothing designed for comfort and style. Shop our curated collection of quality essentials and statement pieces.", keywords: "minimal clothing, sustainable fashion, organic apparel, essentials collection", metadataBase: new URL("https://minimal.com"), title: "Minimal - Timeless Clothing", description: "Discover our curated collection of minimalist apparel designed for comfort and style."};
alternates: {
canonical: "https://minimal.com"},
openGraph: {
title: "Minimal - Timeless Clothing Collection", description: "Discover minimalist, sustainable clothing designed for comfort and style.", type: "website", siteName: "Minimal", url: "https://minimal.com", images: [
{
url: "http://img.b2bpic.net/free-photo/woman-nature-with-clothesline_23-2148170139.jpg", alt: "minimalist clothing fashion collection model"},
],
},
twitter: {
card: "summary_large_image", title: "Minimal - Timeless Clothing Collection", description: "Shop sustainable, minimalist fashion for every moment.", images: ["http://img.b2bpic.net/free-photo/woman-nature-with-clothesline_23-2148170139.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -44,8 +44,8 @@ export default function LandingPage() {
tagIcon={Sparkles} tagIcon={Sparkles}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "Shop Now", href: "#products" }, { text: "Shop Latest Collection", href: "#products" },
{ text: "View Collection", href: "#collections" }, { text: "Explore New Arrivals", href: "#collections" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/woman-nature-with-clothesline_23-2148170139.jpg" imageSrc="http://img.b2bpic.net/free-photo/woman-nature-with-clothesline_23-2148170139.jpg"