8 Commits

Author SHA1 Message Date
fa5f984528 Update src/app/page.tsx 2026-02-17 05:10:21 +00:00
f6dbbf35fd Update src/app/layout.tsx 2026-02-17 05:10:20 +00:00
2d7829aed0 Update src/app/shop/page.tsx 2026-02-17 05:07:25 +00:00
c5b3b8ab46 Update src/app/shop/[id]/page.tsx 2026-02-17 05:07:25 +00:00
7d834fc286 Update src/app/page.tsx 2026-02-17 05:07:24 +00:00
80b34216e3 Update src/app/layout.tsx 2026-02-17 05:07:23 +00:00
68221488eb Update src/app/blog/page.tsx 2026-02-17 05:07:22 +00:00
f62fb791fd Merge version_4 into main
Merge version_4 into main
2026-02-17 05:05:18 +00:00
5 changed files with 31 additions and 49 deletions

View File

@@ -109,4 +109,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}

View File

@@ -254,4 +254,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -121,4 +121,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}