10 Commits

Author SHA1 Message Date
128d018ed4 Update src/app/page.tsx 2026-03-04 03:23:48 +00:00
adf3814eac Update src/app/page.tsx 2026-03-04 03:19:27 +00:00
cc95afca80 Update src/app/layout.tsx 2026-03-04 03:19:26 +00:00
442a73cd89 Update src/app/page.tsx 2026-03-04 03:06:04 +00:00
d218186c85 Update src/app/page.tsx 2026-03-04 03:04:41 +00:00
7e4e36fba0 Update src/app/layout.tsx 2026-03-04 03:04:41 +00:00
9458af34e7 Merge version_1 into main
Merge version_1 into main
2026-03-04 02:57:39 +00:00
86ea85351c Merge version_1 into main
Merge version_1 into main
2026-03-04 02:51:22 +00:00
23c1f5a048 Merge version_1 into main
Merge version_1 into main
2026-03-04 02:41:10 +00:00
923cae8c19 Merge version_1 into main
Merge version_1 into main
2026-03-04 02:39:45 +00:00
2 changed files with 8 additions and 53 deletions

View File

@@ -1,64 +1,20 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-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 inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Aqua Luxe - Premium Luxury Water Bottles", description: "Experience luxury hydration with Aqua Luxe's premium sustainable water bottles. Crafted for the discerning consumer. Shop our collection today.", keywords: "luxury water bottle, premium bottle, sustainable bottle, stainless steel bottle, eco-friendly", metadataBase: new URL("https://www.aqualuxe.com"),
alternates: {
canonical: "https://www.aqualuxe.com"
},
openGraph: {
title: "Aqua Luxe - Premium Luxury Water Bottles", description: "Elevate your hydration with our meticulously crafted luxury water bottles.", siteName: "Aqua Luxe", type: "website", images: [
{
url: "http://img.b2bpic.net/free-vector/gradient-art-deco-story-collection_23-2149162668.jpg", alt: "Premium luxury water bottle"
}
]
},
twitter: {
card: "summary_large_image", title: "Aqua Luxe - Premium Water Bottles", description: "Luxury meets sustainability. Discover our premium collection.", images: ["http://img.b2bpic.net/free-vector/gradient-art-deco-story-collection_23-2149162668.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Aqua Luxe - Premium Water Bottles", description: "Experience luxury hydration with our premium water bottles"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1426,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -29,7 +29,7 @@ export default function LandingPage() {
<NavbarStyleCentered
brandName="Aqua Luxe"
navItems={[
{ name: "Home", id: "home" },
{ name: "Home", id: "/" },
{ name: "Products", id: "products" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" },
@@ -189,7 +189,7 @@ export default function LandingPage() {
columns={[
{
items: [
{ label: "Home", href: "home" },
{ label: "Home", href: "/" },
{ label: "Products", href: "products" },
{ label: "About", href: "about" }
]