Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a07ae914cc | |||
| b834fb4d6f | |||
| 7d33298c26 | |||
| a4b5a7c3fb | |||
| 1f0a2450f4 | |||
| 6fc83a733e |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user