4 Commits

Author SHA1 Message Date
d87514e3cc Merge version_2 into main
Merge version_2 into main
2026-02-25 18:09:09 +00:00
bd7f03c9fa Update src/app/styles/base.css 2026-02-25 18:09:04 +00:00
8ae43f5f5c Update src/app/layout.tsx 2026-02-25 18:09:03 +00:00
848225b348 Merge version_1 into main
Merge version_1 into main
2026-02-25 17:51:01 +00:00
2 changed files with 11 additions and 21 deletions

View File

@@ -1,29 +1,19 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Poppins } from "next/font/google"; import { Bebas_Neue } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const poppins = Poppins({ const bebasNeue = Bebas_Neue({
variable: "--font-poppins", variable: "--font-bebas-neue", subsets: ["latin"],
subsets: ["latin"], weight: ["400"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "UrbanStyle - Premium Urban Fashion & Streetwear", title: "UrbanStyle - Premium Urban Fashion & Streetwear", description: "Shop authentic urban fashion and premium streetwear. Discover curated collections with fast shipping, exceptional service, and membership rewards. Join 50K+ happy customers.", keywords: "urban fashion, streetwear, contemporary apparel, urban style, clothing store, premium fashion", openGraph: {
description: "Shop authentic urban fashion and premium streetwear. Discover curated collections with fast shipping, exceptional service, and membership rewards. Join 50K+ happy customers.", title: "UrbanStyle - Urban Fashion Store", description: "Premium urban fashion and streetwear collections", siteName: "UrbanStyle", type: "website"},
keywords: "urban fashion, streetwear, contemporary apparel, urban style, clothing store, premium fashion",
openGraph: {
title: "UrbanStyle - Urban Fashion Store",
description: "Premium urban fashion and streetwear collections",
siteName: "UrbanStyle",
type: "website",
},
twitter: { twitter: {
card: "summary_large_image", card: "summary_large_image", title: "UrbanStyle - Urban Fashion Store"},
title: "UrbanStyle - Urban Fashion Store",
},
robots: { robots: {
index: true, index: true,
follow: true, follow: true,
@@ -39,7 +29,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={`${poppins.variable} antialiased`} className={`${bebasNeue.variable} antialiased`}
> >
<Tag /> <Tag />
{children} {children}
@@ -1414,4 +1404,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-poppins), sans-serif; font-family: var(--font-bebas-neue), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-poppins), sans-serif; font-family: var(--font-bebas-neue), sans-serif;
} }