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 { Source_Sans_3 } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
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"],
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"],
openGraph: {
title: "Upcycled Threads | Sustainable Fashion",
description: "Discover unique, handcrafted upcycled fashion pieces that celebrate creativity and environmental responsibility.",
siteName: "Upcycled Threads",
type: "website",
},
title: "Upcycled Threads | Sustainable Fashion", description: "Discover unique, handcrafted upcycled fashion pieces that celebrate creativity and environmental responsibility.", siteName: "Upcycled Threads", type: "website"},
twitter: {
card: "summary_large_image",
title: "Upcycled Threads | Sustainable Fashion",
description: "Transform your wardrobe with unique, handcrafted upcycled pieces",
},
card: "summary_large_image", title: "Upcycled Threads | Sustainable Fashion", description: "Transform your wardrobe with unique, handcrafted upcycled pieces"},
robots: {
index: true,
follow: true,
@@ -35,7 +26,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${poppins.variable} antialiased`}>
{children}
<script
@@ -1258,4 +1249,4 @@ export default function RootLayout({
</body>
</html>
);
}
}