Update src/app/layout.tsx

This commit is contained in:
2026-01-24 17:17:36 +00:00
parent b8ea73173c
commit ea0644f5d5

View File

@@ -1,27 +1,18 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Source_Sans_3 } from "next/font/google"; import { Poppins } from "next/font/google";
import "./globals.css"; import "./globals.css";
const sourceSans3 = Source_Sans_3({ const poppins = Poppins({
variable: "--font-source-sans-3", variable: "--font-poppins", subsets: ["latin"],
subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Upcycled Threads | Sustainable Fashion & Handcrafted Clothing", title: "Upcycled Threads | Sustainable Fashion & Handcrafted Clothing", description: "Transform your wardrobe with unique, handcrafted upcycled fashion. Shop one-of-a-kind pieces made from vintage & sustainable materials. Eco-conscious style.", keywords: ["upcycled fashion", "sustainable clothing", "handmade garments", "vintage fashion", "eco-friendly apparel", "second-hand style"],
description: "Transform your wardrobe with unique, handcrafted upcycled fashion. Shop one-of-a-kind pieces made from vintage & sustainable materials. Eco-conscious style.",
keywords: ["upcycled fashion", "sustainable clothing", "handmade garments", "vintage fashion", "eco-friendly apparel", "second-hand style"],
openGraph: { openGraph: {
title: "Upcycled Threads | Sustainable Fashion", title: "Upcycled Threads | Sustainable Fashion", description: "Discover unique, handcrafted upcycled fashion pieces that celebrate creativity and environmental responsibility.", siteName: "Upcycled Threads", type: "website"},
description: "Discover unique, handcrafted upcycled fashion pieces that celebrate creativity and environmental responsibility.",
siteName: "Upcycled Threads",
type: "website",
},
twitter: { twitter: {
card: "summary_large_image", card: "summary_large_image", title: "Upcycled Threads | Sustainable Fashion", description: "Transform your wardrobe with unique, handcrafted upcycled pieces"},
title: "Upcycled Threads | Sustainable Fashion",
description: "Transform your wardrobe with unique, handcrafted upcycled pieces",
},
robots: { robots: {
index: true, index: true,
follow: true, follow: true,
@@ -35,7 +26,7 @@ export default function RootLayout({
}>) { }>) {
return ( return (
<html lang="en"> <html lang="en">
<body className={`${sourceSans3.variable} antialiased`}> <body className={`${poppins.variable} antialiased`}>
{children} {children}
<script <script
@@ -1258,4 +1249,4 @@ export default function RootLayout({
</body> </body>
</html> </html>
); );
} }