Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 37eace80e0 | |||
| 4dfb102b7d | |||
| 1b96fc97c9 | |||
| 5af3215527 | |||
| b71d34022d | |||
| 71f1b3fa53 | |||
| b37b29e21d | |||
| 42848d4ddc | |||
| 60a8b85795 | |||
| df5dc8f665 | |||
| 5947798e44 | |||
| b9d8a55c8d | |||
| 0a2a656782 | |||
| 27915ba2b4 | |||
| 064110b093 | |||
| 0b31aa04da | |||
| f27f828388 | |||
| 27cb362313 | |||
| fd92b273bf | |||
| 1d168a0bdd | |||
| 4b07589318 | |||
| 2987ce00fb | |||
| 619c89c465 | |||
| 94eade2191 |
@@ -71,4 +71,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,45 +1,23 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Élite Aesthetics | Premium Beauty Enhancement Surgery", description: "Board-certified surgical experts delivering transformative aesthetic results. Luxury beauty enhancement with cutting-edge techniques.", keywords: "cosmetic surgery, facial enhancement, rhinoplasty, facelift, breast augmentation, body contouring, aesthetic surgeon, beauty surgery", robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
},
|
||||
openGraph: {
|
||||
title: "Élite Aesthetics | Premium Surgical Beauty Enhancement", description: "Transformative aesthetic surgery by board-certified experts. Luxury results, personalized care.", siteName: "Élite Aesthetics", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/senior-patient-signing-medical-decisions-form-sitting-hospital-bed-modern-private-clinic-doctor-with-clipboard-nurse-working-backgorund-healthcare-medical-medicinal-system-documents-contra_482257-4751.jpg", alt: "Premium surgical consultation"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Élite Aesthetics | Premium Beauty Surgery", description: "Board-certified aesthetic surgeons delivering transformative results.", images: ["http://img.b2bpic.net/free-photo/male-patient-receiving-massage-from-doctor_107420-65163.jpg"]
|
||||
}
|
||||
};
|
||||
title: "Élite Aesthetics", description: "Surgical excellence meets aesthetic artistry"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1407,7 +1385,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
|
||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Award, Camera, Heart, Sparkles, Star } from "lucide-react";
|
||||
import { Award, Camera, Heart, Sparkles, Star, CheckCircle } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -43,55 +43,67 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Surgical Excellence Meets Aesthetic Artistry"
|
||||
description="Experience transformative beauty enhancement with our board-certified surgeons. Combining cutting-edge surgical techniques with refined aesthetic vision to deliver results that enhance your natural beauty."
|
||||
tag="Premium Beauty Surgery"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
rating={5}
|
||||
ratingText="Trusted by Refined Patients"
|
||||
mediaItems={[
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
carouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-patient-signing-medical-decisions-form-sitting-hospital-bed-modern-private-clinic-doctor-with-clipboard-nurse-working-backgorund-healthcare-medical-medicinal-system-documents-contra_482257-4751.jpg", imageAlt: "Professional surgical consultation"
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/senior-patient-signing-medical-decisions-form-sitting-hospital-bed-modern-private-clinic-doctor-with-clipboard-nurse-working-backgorund-healthcare-medical-medicinal-system-documents-contra_482257-4751.jpg", imageAlt: "Professional surgical consultation"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-patient-receiving-massage-from-doctor_107420-65163.jpg", imageAlt: "Modern aesthetic enhancement results"
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/male-patient-receiving-massage-from-doctor_107420-65163.jpg", imageAlt: "Modern aesthetic enhancement results"
|
||||
},
|
||||
{
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-looking-patient_23-2149352169.jpg?_wi=1", imageAlt: "Professional consultation room"
|
||||
},
|
||||
{
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-cosmetology-studio_1157-33855.jpg?_wi=1", imageAlt: "Cosmetic enhancement facility"
|
||||
},
|
||||
{
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/woman-s-body-with-marker-traces-front-view_23-2149350066.jpg?_wi=1", imageAlt: "Surgical planning consultation"
|
||||
},
|
||||
{
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/woman-marked-out-cosmetic-surgery_273609-14510.jpg?_wi=1", imageAlt: "Advanced surgical techniques"
|
||||
}
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "#contact" },
|
||||
{ text: "View Procedures", href: "#procedures" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
autoPlay={true}
|
||||
autoPlayInterval={4000}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaSplitTabsAbout
|
||||
<SplitAbout
|
||||
title="Why Choose Élite Aesthetics"
|
||||
description="Our commitment to excellence defines every aspect of your experience."
|
||||
tabs={[
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
bulletPoints={[
|
||||
{
|
||||
id: "expertise", label: "Board-Certified Excellence", description: "Our surgeons are fellowship-trained and hold certifications from the highest medical boards. With over 200 combined years of surgical experience, we deliver results with precision and artistry."
|
||||
title: "Board-Certified Excellence", description: "Our surgeons are fellowship-trained and hold certifications from the highest medical boards. With over 200 combined years of surgical experience, we deliver results with precision and artistry.", icon: CheckCircle
|
||||
},
|
||||
{
|
||||
id: "innovation", label: "Advanced Technology", description: "We invest in state-of-the-art surgical equipment and techniques, ensuring the safest and most effective procedures available. Our operating suites meet international standards."
|
||||
title: "Advanced Technology", description: "We invest in state-of-the-art surgical equipment and techniques, ensuring the safest and most effective procedures available. Our operating suites meet international standards.", icon: CheckCircle
|
||||
},
|
||||
{
|
||||
id: "personalized", label: "Personalized Care", description: "Every patient is unique. We create customized treatment plans that honor your goals and enhance your natural features, never imposing a one-size-fits-all approach."
|
||||
title: "Personalized Care", description: "Every patient is unique. We create customized treatment plans that honor your goals and enhance your natural features, never imposing a one-size-fits-all approach.", icon: CheckCircle
|
||||
},
|
||||
{
|
||||
id: "results", label: "Proven Results", description: "Our gallery of transformations speaks to our commitment to excellence. See how we've helped thousands achieve their aesthetic dreams with natural-looking, beautiful results."
|
||||
title: "Proven Results", description: "Our gallery of transformations speaks to our commitment to excellence. See how we've helped thousands achieve their aesthetic dreams with natural-looking, beautiful results.", icon: CheckCircle
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/empty-hospital-reception-counter-hallway-waiting-room-seats-medical-examination-appointment-with-physician-registration-desk-with-waiting-area-help-patients-with-disease-diagnosis_482257-51632.jpg"
|
||||
imageAlt="State-of-the-art surgical facility"
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
imagePosition="right"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -107,16 +119,16 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Rhinoplasty", price: "Consultation Based", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-looking-patient_23-2149352169.jpg", imageAlt: "Rhinoplasty procedure"
|
||||
id: "1", name: "Rhinoplasty", price: "Consultation Based", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-looking-patient_23-2149352169.jpg?_wi=2", imageAlt: "Rhinoplasty procedure"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Facelift", price: "Consultation Based", imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-cosmetology-studio_1157-33855.jpg", imageAlt: "Facelift procedure"
|
||||
id: "2", name: "Facelift", price: "Consultation Based", imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-cosmetology-studio_1157-33855.jpg?_wi=2", imageAlt: "Facelift procedure"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Liposuction", price: "Consultation Based", imageSrc: "http://img.b2bpic.net/free-photo/woman-s-body-with-marker-traces-front-view_23-2149350066.jpg", imageAlt: "Liposuction procedure"
|
||||
id: "3", name: "Liposuction", price: "Consultation Based", imageSrc: "http://img.b2bpic.net/free-photo/woman-s-body-with-marker-traces-front-view_23-2149350066.jpg?_wi=2", imageAlt: "Liposuction procedure"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Breast Augmentation", price: "Consultation Based", imageSrc: "http://img.b2bpic.net/free-photo/woman-marked-out-cosmetic-surgery_273609-14510.jpg", imageAlt: "Breast augmentation procedure"
|
||||
id: "4", name: "Breast Augmentation", price: "Consultation Based", imageSrc: "http://img.b2bpic.net/free-photo/woman-marked-out-cosmetic-surgery_273609-14510.jpg?_wi=2", imageAlt: "Breast augmentation procedure"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
@@ -127,7 +139,7 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
<TestimonialCardSix
|
||||
title="Transformations That Inspire"
|
||||
description="Hear from our patients about their journey with Élite Aesthetics and the life-changing results they've experienced."
|
||||
tag="Patient Success Stories"
|
||||
@@ -135,33 +147,33 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Victoria Sterling", role: "Executive", company: "Manhattan, NY", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", imageAlt: "Victoria Sterling"
|
||||
id: "1", name: "Victoria Sterling", handle: "Executive, Manhattan, NY", testimonial: "The transformation exceeded my expectations. Professional care and stunning results.", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1", imageAlt: "Victoria Sterling"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Sophia Lawrence", role: "Entrepreneur", company: "San Francisco, CA", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/this-is-my-way-relax_329181-1143.jpg", imageAlt: "Sophia Lawrence"
|
||||
id: "2", name: "Sophia Lawrence", handle: "Entrepreneur, San Francisco, CA", testimonial: "From consultation to recovery, every detail was handled with excellence and care.", imageSrc: "http://img.b2bpic.net/free-photo/this-is-my-way-relax_329181-1143.jpg?_wi=1", imageAlt: "Sophia Lawrence"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Isabella Martinez", role: "Creative Director", company: "Los Angeles, CA", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-smiling_93675-133185.jpg", imageAlt: "Isabella Martinez"
|
||||
id: "3", name: "Isabella Martinez", handle: "Creative Director, Los Angeles, CA", testimonial: "The artistry and precision shown in my procedure was remarkable. Highly recommend.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-smiling_93675-133185.jpg", imageAlt: "Isabella Martinez"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Natalie Anderson", role: "Physician", company: "Boston, MA", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-businesswoman-looking-through-window_1262-2043.jpg", imageAlt: "Natalie Anderson"
|
||||
id: "4", name: "Natalie Anderson", handle: "Physician, Boston, MA", testimonial: "As a medical professional, I was impressed by their surgical expertise and patient care.", imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-businesswoman-looking-through-window_1262-2043.jpg", imageAlt: "Natalie Anderson"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Alexandra Chen", role: "Luxury Brand Consultant", company: "Miami, FL", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-dark-haired-girl-toasty-fluffy-sweater-with-lens-flare-white-background_633478-2094.jpg", imageAlt: "Alexandra Chen"
|
||||
id: "5", name: "Alexandra Chen", handle: "Luxury Brand Consultant, Miami, FL", testimonial: "Élite Aesthetics delivers on their promise of excellence. Natural-looking, beautiful results.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-dark-haired-girl-toasty-fluffy-sweater-with-lens-flare-white-background_633478-2094.jpg", imageAlt: "Alexandra Chen"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Catherine Richmond", role: "Art Curator", company: "Chicago, IL", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-therapy_23-2148928886.jpg", imageAlt: "Catherine Richmond"
|
||||
id: "6", name: "Catherine Richmond", handle: "Art Curator, Chicago, IL", testimonial: "The attention to detail and artistic approach made all the difference in my transformation.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-therapy_23-2148928886.jpg", imageAlt: "Catherine Richmond"
|
||||
},
|
||||
{
|
||||
id: "7", name: "Rebecca Foster", handle: "Marketing Executive, New York, NY", testimonial: "Outstanding service from start to finish. Results that exceed all expectations.", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2", imageAlt: "Rebecca Foster"
|
||||
},
|
||||
{
|
||||
id: "8", name: "Michelle Davis", handle: "Fashion Designer, Los Angeles, CA", testimonial: "The surgical team's expertise and dedication to patient satisfaction is unparalleled.", imageSrc: "http://img.b2bpic.net/free-photo/this-is-my-way-relax_329181-1143.jpg?_wi=2", imageAlt: "Michelle Davis"
|
||||
}
|
||||
]}
|
||||
speed={40}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -268,4 +280,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -97,13 +97,11 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
{ name: "Our Team", id: "team" },
|
||||
{ name: "Results", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Élite Aesthetics"
|
||||
bottomLeftText="Medical Grade Excellence"
|
||||
bottomRightText="hello@eliteaesthetics.com"
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
</div>
|
||||
<main className="min-h-screen flex items-center justify-center pt-20">
|
||||
@@ -144,13 +142,11 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
{ name: "Our Team", id: "team" },
|
||||
{ name: "Results", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Élite Aesthetics"
|
||||
bottomLeftText="Medical Grade Excellence"
|
||||
bottomRightText="hello@eliteaesthetics.com"
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
</div>
|
||||
<main className="min-h-screen flex items-center justify-center pt-20">
|
||||
@@ -198,13 +194,11 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
{ name: "Our Team", id: "team" },
|
||||
{ name: "Results", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Élite Aesthetics"
|
||||
bottomLeftText="Medical Grade Excellence"
|
||||
bottomRightText="hello@eliteaesthetics.com"
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
</div>
|
||||
<div id="productDetailCard" data-section="productDetailCard">
|
||||
@@ -253,4 +247,4 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -40,8 +40,7 @@ function ShopPageContent() {
|
||||
{ name: "Our Team", id: "team" },
|
||||
{ name: "Results", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Élite Aesthetics"
|
||||
bottomLeftText="Medical Grade Excellence"
|
||||
@@ -85,8 +84,7 @@ function ShopPageContent() {
|
||||
{ name: "Our Team", id: "team" },
|
||||
{ name: "Results", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Élite Aesthetics"
|
||||
bottomLeftText="Medical Grade Excellence"
|
||||
@@ -122,4 +120,4 @@ export default function ShopPage() {
|
||||
<ShopPageContent />
|
||||
</Suspense>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user