4 Commits

Author SHA1 Message Date
0554bec60f Update src/app/page.tsx 2026-03-06 04:40:27 +00:00
d6b89fdc7b Update src/app/page.tsx 2026-03-06 04:39:42 +00:00
cf68e04029 Update src/app/page.tsx 2026-03-04 03:06:03 +00:00
e1f1db53b9 Update src/app/page.tsx 2026-03-04 03:04:37 +00:00
2 changed files with 66 additions and 20 deletions

View File

@@ -1,20 +1,64 @@
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 inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = {
title: "Aqua Luxe - Premium Water Bottles", description: "Experience luxury hydration with our premium water bottles"};
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
}
};
export default function RootLayout({
children,
}: {
}: Readonly<{
children: React.ReactNode;
}) {
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1382,6 +1426,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,6 +10,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Sparkles, Award, Zap, Heart, Star, Check, Leaf } from 'lucide-react';
import Link from 'next/link';
export default function LandingPage() {
return (
@@ -47,7 +48,7 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-vector/gradient-art-deco-story-collection_23-2149162668.jpg"
imageSrc="http://img.b2bpic.net/free-vector/gradient-art-deco-story-collection_23-2149162668.jpg?_wi=1"
imageAlt="Luxury water bottle showcase"
mediaAnimation="blur-reveal"
buttons={[
@@ -77,13 +78,13 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
products={[
{
id: "1", name: "Aqua Luxe Infinity", price: "$189.00", imageSrc: "http://img.b2bpic.net/free-photo/close-up-thermos-floating-water_23-2150963119.jpg", imageAlt: "Aqua Luxe Infinity bottle"
id: "1", name: "Aqua Luxe Infinity", price: "$189.00", imageSrc: "http://img.b2bpic.net/free-photo/close-up-thermos-floating-water_23-2150963119.jpg?_wi=1", imageAlt: "Aqua Luxe Infinity bottle"
},
{
id: "2", name: "Crystal Elegance Pro", price: "$229.00", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg", imageAlt: "Crystal Elegance Pro bottle"
id: "2", name: "Crystal Elegance Pro", price: "$229.00", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg?_wi=1", imageAlt: "Crystal Elegance Pro bottle"
},
{
id: "3", name: "Platinum Edition", price: "$279.00", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg", imageAlt: "Platinum Edition bottle"
id: "3", name: "Platinum Edition", price: "$279.00", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg?_wi=2", imageAlt: "Platinum Edition bottle"
}
]}
buttons={[
@@ -101,21 +102,21 @@ export default function LandingPage() {
tagIcon={Zap}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground="noInvert"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="four-items-2x2-equal-grid"
features={[
{
id: "1", title: "Superior Insulation", description: "Advanced triple-wall technology keeps beverages at ideal temperature for 48 hours. Your cold drinks stay refreshingly cold, hot drinks remain perfectly warm.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-thermos-floating-water_23-2150963119.jpg", imageAlt: "Superior insulation feature"
id: "1", title: "Superior Insulation", description: "Advanced triple-wall technology keeps beverages at ideal temperature for 48 hours. Your cold drinks stay refreshingly cold, hot drinks remain perfectly warm.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-thermos-floating-water_23-2150963119.jpg?_wi=2", imageAlt: "Superior insulation feature"
},
{
id: "2", title: "Sustainable Materials", description: "Crafted from premium recycled stainless steel. Every bottle purchased supports ocean cleanup initiatives and sustainable manufacturing practices.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg", imageAlt: "Sustainable materials"
id: "2", title: "Sustainable Materials", description: "Crafted from premium recycled stainless steel. Every bottle purchased supports ocean cleanup initiatives and sustainable manufacturing practices.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg?_wi=3", imageAlt: "Sustainable materials"
},
{
id: "3", title: "Timeless Design", description: "Minimalist aesthetics meet functional excellence. Our bottles complement any lifestyle while making a statement about your values.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg", imageAlt: "Timeless design"
id: "3", title: "Timeless Design", description: "Minimalist aesthetics meet functional excellence. Our bottles complement any lifestyle while making a statement about your values.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg?_wi=4", imageAlt: "Timeless design"
},
{
id: "4", title: "Lifetime Warranty", description: "We stand behind our craftsmanship with an unconditional lifetime guarantee. Your investment protected forever.", imageSrc: "http://img.b2bpic.net/free-vector/gradient-art-deco-story-collection_23-2149162668.jpg", imageAlt: "Lifetime warranty"
id: "4", title: "Lifetime Warranty", description: "We stand behind our craftsmanship with an unconditional lifetime guarantee. Your investment protected forever.", imageSrc: "http://img.b2bpic.net/free-vector/gradient-art-deco-story-collection_23-2149162668.jpg?_wi=2", imageAlt: "Lifetime warranty"
}
]}
/>
@@ -130,7 +131,7 @@ export default function LandingPage() {
description="Founded in 2018"
subdescription="By designers and sustainability advocates"
icon={Leaf}
imageSrc="http://img.b2bpic.net/free-photo/composition-natural-argan-seeds_23-2149016622.jpg"
imageSrc="http://img.b2bpic.net/free-photo/composition-natural-argan-seeds_23-2149016622.jpg?_wi=1"
imageAlt="Aqua Luxe brand story"
mediaAnimation="blur-reveal"
useInvertedBackground={false}
@@ -151,16 +152,16 @@ export default function LandingPage() {
id: "1", name: "Sarah Mitchell, Fitness Enthusiast", date: "Date: 15 January 2025", title: "Absolutely Transformed My Daily Routine", quote: "The Aqua Luxe bottle has become an essential part of my life. The insulation is incredible, and knowing I'm supporting sustainable practices makes every sip feel purposeful.", tag: "Verified Purchase", avatarSrc: "http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", avatarAlt: "Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/thermos-with-two-cups-prepared-camping-day_23-2148301375.jpg", imageAlt: "Customer using luxury bottle"
},
{
id: "2", name: "James Chen, Corporate Executive", date: "Date: 12 January 2025", title: "Luxury Meets Functionality", quote: "Invested in the Platinum Edition and it's proven its worth a hundred times over. The craftsmanship is evident in every detail. This is more than a water bottle; it's a lifestyle choice.", tag: "Verified Purchase", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "James Chen", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg", imageAlt: "Platinum bottle in use"
id: "2", name: "James Chen, Corporate Executive", date: "Date: 12 January 2025", title: "Luxury Meets Functionality", quote: "Invested in the Platinum Edition and it's proven its worth a hundred times over. The craftsmanship is evident in every detail. This is more than a water bottle; it's a lifestyle choice.", tag: "Verified Purchase", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "James Chen", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg?_wi=5", imageAlt: "Platinum bottle in use"
},
{
id: "3", name: "Emma Rodriguez, Environmental Advocate", date: "Date: 08 January 2025", title: "Making a Difference with Every Purchase", quote: "Finally, a premium bottle that aligns with my values. The sustainability commitment is genuine, and the quality is uncompromising. Highly recommend to anyone who cares about our planet.", tag: "Verified Purchase", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg", avatarAlt: "Emma Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/composition-natural-argan-seeds_23-2149016622.jpg", imageAlt: "Eco-conscious lifestyle"
id: "3", name: "Emma Rodriguez, Environmental Advocate", date: "Date: 08 January 2025", title: "Making a Difference with Every Purchase", quote: "Finally, a premium bottle that aligns with my values. The sustainability commitment is genuine, and the quality is uncompromising. Highly recommend to anyone who cares about our planet.", tag: "Verified Purchase", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg", avatarAlt: "Emma Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/composition-natural-argan-seeds_23-2149016622.jpg?_wi=2", imageAlt: "Eco-conscious lifestyle"
},
{
id: "4", name: "Michael Thompson, Travel Blogger", date: "Date: 05 January 2025", title: "The Perfect Travel Companion", quote: "I've traveled to 40+ countries with my Aqua Luxe bottle. It's durable, elegant, and keeps my drinks at the perfect temperature no matter where I am. Worth every penny.", tag: "Verified Purchase", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "Michael Thompson", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg", imageAlt: "Travel with luxury bottle"
id: "4", name: "Michael Thompson, Travel Blogger", date: "Date: 05 January 2025", title: "The Perfect Travel Companion", quote: "I've traveled to 40+ countries with my Aqua Luxe bottle. It's durable, elegant, and keeps my drinks at the perfect temperature no matter where I am. Worth every penny.", tag: "Verified Purchase", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "Michael Thompson", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unrecognizable-woman-dressed-active-wear-holds-bottle-with-fresh-water-leads-active-lifestyle-takes-break-after-doing-sport-exersices-trains-outdoors-people-physcial-activity_273609-56583.jpg?_wi=6", imageAlt: "Travel with luxury bottle"
},
{
id: "5", name: "Jessica Park, Wellness Coach", date: "Date: 02 January 2025", title: "A Statement About Your Values", quote: "My clients ask about my bottle constantly. It's become a conversation starter and a symbol of our commitment to health and sustainability. I've recommended it to dozens of people.", tag: "Verified Purchase", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-woman_23-2149022644.jpg", avatarAlt: "Jessica Park", imageSrc: "http://img.b2bpic.net/free-vector/gradient-art-deco-story-collection_23-2149162668.jpg", imageAlt: "Wellness lifestyle"
id: "5", name: "Jessica Park, Wellness Coach", date: "Date: 02 January 2025", title: "A Statement About Your Values", quote: "My clients ask about my bottle constantly. It's become a conversation starter and a symbol of our commitment to health and sustainability. I've recommended it to dozens of people.", tag: "Verified Purchase", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-woman_23-2149022644.jpg", avatarAlt: "Jessica Park", imageSrc: "http://img.b2bpic.net/free-vector/gradient-art-deco-story-collection_23-2149162668.jpg?_wi=3", imageAlt: "Wellness lifestyle"
}
]}
/>