Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-04 03:21:13 +00:00
2 changed files with 10 additions and 37 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const dmSans = DM_Sans({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Abre Sunglasses | Premium Handcrafted Eyewear", description: "Discover Abre's premium sunglasses collection. Handcrafted eyewear featuring 100% UV protection, lightweight design, and sustainable materials. Trusted by thousands.", keywords: "sunglasses, eyewear, premium glasses, handcrafted, UV protection, sustainable", openGraph: {
title: "Abre Sunglasses | Premium Eyewear", description: "Handcrafted sunglasses with style, comfort, and protection", siteName: "Abre", type: "website"},
twitter: {
card: "summary_large_image", title: "Abre Sunglasses | Premium Eyewear", description: "Discover premium handcrafted sunglasses"},
robots: {
index: true,
follow: true,
},
};
title: "Abre - Premium Sunglasses", description: "Premium sunglasses designed for those who refuse to compromise on quality or aesthetics."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={dmSans.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -81,6 +81,9 @@ export default function LandingPage() {
}
]}
textboxLayout="default"
buttons={[
{ text: "View All Collection", href: "#" }
]}
/>
</div>