Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fa5f984528 | |||
| f6dbbf35fd | |||
| 2d7829aed0 | |||
| c5b3b8ab46 | |||
| 7d834fc286 | |||
| 80b34216e3 | |||
| 68221488eb | |||
| f62fb791fd |
@@ -109,4 +109,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,47 +1,23 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Ubuntu } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const ubuntu = Ubuntu({
|
||||
variable: "--font-ubuntu", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "700"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "GlowUp Beauty Clinic | Premium Beauty & Wellness Services", description: "Experience luxury beauty treatments at GlowUp Clinic. Expert facials, hair services, makeup artistry, and spa wellness. Book your appointment today.", keywords: "beauty clinic, facial treatments, hair salon, makeup artist, spa wellness, skincare services, professional beauty", metadataBase: new URL("https://glowupbeautyclinic.com"),
|
||||
alternates: {
|
||||
canonical: "https://glowupbeautyclinic.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "GlowUp Beauty Clinic | Premium Beauty & Wellness", description: "Transform your beauty with expert treatments from certified professionals", siteName: "GlowUp Beauty Clinic", type: "website", images: [{
|
||||
url: "https://img.b2bpic.net/free-photo/two-female-friends-relaxing-spa-holding-cocktails_1157-49807.jpg", alt: "GlowUp Beauty Clinic"
|
||||
}]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "GlowUp Beauty Clinic", description: "Premium beauty and wellness services for your transformation", images: ["https://img.b2bpic.net/free-photo/two-female-friends-relaxing-spa-holding-cocktails_1157-49807.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
title: "GlowUp Beauty Clinic", description: "Premium beauty treatments delivered by expert professionals"
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${ubuntu.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1260,7 +1236,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
@@ -41,20 +41,27 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
logoText="GlowUp"
|
||||
description="Premium beauty treatments delivered by expert professionals in a luxurious, welcoming environment. Experience transformative skincare, styling, and wellness services tailored to elevate your natural beauty."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
<HeroSplitDualMedia
|
||||
title="Premium Beauty Treatments"
|
||||
description="Expert professionals delivering transformative skincare, styling, and wellness services in a luxurious environment."
|
||||
tag="Beauty & Wellness"
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Book Appointment", href: "contact" },
|
||||
{ text: "Learn More", href: "services" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
layoutOrder="default"
|
||||
imageSrc="https://img.b2bpic.net/free-photo/two-female-friends-relaxing-spa-holding-cocktails_1157-49807.jpg"
|
||||
imageAlt="Luxurious beauty clinic interior with modern design"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/two-female-friends-relaxing-spa-holding-cocktails_1157-49807.jpg", imageAlt: "Luxurious beauty clinic interior with modern design"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/room-with-massage-tables-wall-with-lights-it_188544-36461.jpg", imageAlt: "Professional spa treatment room"
|
||||
}
|
||||
]}
|
||||
mediaAnimation="opacity"
|
||||
frameStyle="card"
|
||||
rating={5}
|
||||
ratingText="Rated 5 stars by our clients"
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -255,4 +262,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -254,4 +254,4 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -121,4 +121,4 @@ export default function ShopPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user