Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 10:53:49 +00:00
2 changed files with 9 additions and 49 deletions

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "ELEVATE | Premium Fashion Brand", description: "Discover timeless, sustainable fashion with premium quality. Shop our curated collections of elegant clothing designed for the modern wardrobe.", keywords: "fashion, clothing, brand, premium, sustainable, timeless design", metadataBase: new URL("https://elevate-fashion.com"),
alternates: {
canonical: "https://elevate-fashion.com"
},
openGraph: {
title: "ELEVATE | Premium Fashion Brand", description: "Experience premium fashion that elevates your style. Quality craftsmanship meets contemporary design.", url: "https://elevate-fashion.com", siteName: "ELEVATE", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/young-women-posing-near-old-decorated-car_1153-6207.jpg", alt: "ELEVATE Fashion Collection"
}
]
},
twitter: {
card: "summary_large_image", title: "ELEVATE | Premium Fashion Brand", description: "Discover timeless, sustainable fashion with premium quality.", images: ["http://img.b2bpic.net/free-photo/young-women-posing-near-old-decorated-car_1153-6207.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "ELEVATE - Premium Fashion Brand", description: "Discover curated collections of timeless fashion pieces designed for the modern wardrobe."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -40,7 +40,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
title="Premium Fashion, Elevated Style"
description="Discover our curated collection of timeless pieces designed for the modern wardrobe. Quality craftsmanship meets contemporary design."
description="Discover our curated collection of timeless pieces designed for the modern wardrobe. Quality craftsmanship meets contemporary design. Limited pieces available."
tag="New Collection"
tagIcon={Sparkles}
tagAnimation="slide-up"
@@ -64,7 +64,7 @@ export default function LandingPage() {
}
]}
buttons={[
{ text: "Shop Now", href: "#products" },
{ text: "Shop New Collection", href: "#products" },
{ text: "Explore Collections", href: "#features" }
]}
buttonAnimation="slide-up"