Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fa5f984528 | |||
| f6dbbf35fd | |||
| 2d7829aed0 | |||
| c5b3b8ab46 | |||
| 7d834fc286 | |||
| 80b34216e3 | |||
| 68221488eb | |||
| f62fb791fd | |||
| 8b04f5ee10 | |||
| 5bfdfe7013 | |||
| f11aec4b56 | |||
| 5c286eb00f | |||
| 9cc97ffaaa | |||
| 7fecaf5c78 | |||
| 52c04f1b39 | |||
| 1fc68974e0 |
@@ -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>
|
||||
|
||||
|
||||
@@ -89,8 +89,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Team","id":"team"},
|
||||
{"name":"Testimonials","id":"testimonials"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{"name":"Contact","id":"contact"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
brandName="GlowUp Beauty Clinic"
|
||||
@@ -140,8 +139,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Team","id":"team"},
|
||||
{"name":"Testimonials","id":"testimonials"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{"name":"Contact","id":"contact"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
brandName="GlowUp Beauty Clinic"
|
||||
@@ -198,8 +196,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Team","id":"team"},
|
||||
{"name":"Testimonials","id":"testimonials"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{"name":"Contact","id":"contact"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
brandName="GlowUp Beauty Clinic"
|
||||
|
||||
@@ -39,8 +39,7 @@ export default function ShopPage() {
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Team","id":"team"},
|
||||
{"name":"Testimonials","id":"testimonials"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{"name":"Contact","id":"contact"}
|
||||
]}
|
||||
button={{"text":"Book Now","href":"contact"}}
|
||||
brandName="GlowUp Beauty Clinic"
|
||||
@@ -89,8 +88,7 @@ export default function ShopPage() {
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Team","id":"team"},
|
||||
{"name":"Testimonials","id":"testimonials"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{"name":"Contact","id":"contact"}
|
||||
]}
|
||||
button={{"text":"Book Now","href":"contact"}}
|
||||
brandName="GlowUp Beauty Clinic"
|
||||
|
||||
@@ -2,21 +2,21 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #faf8f5;;
|
||||
--card: #f5f1eb;;
|
||||
--foreground: #3a2f27;;
|
||||
--primary-cta: #9b7f6f;;
|
||||
--secondary-cta: #faf8f5;;
|
||||
--accent: #d4c4b8;;
|
||||
--background-accent: #e8dfd6;; */
|
||||
/* --background: #fffafa;;
|
||||
--card: #fff7f7;;
|
||||
--foreground: #1a0000;;
|
||||
--primary-cta: #ff1744;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #f5c4c7;;
|
||||
--background-accent: #f09199;; */
|
||||
|
||||
--background: #faf8f5;;
|
||||
--card: #f5f1eb;;
|
||||
--foreground: #3a2f27;;
|
||||
--primary-cta: #9b7f6f;;
|
||||
--secondary-cta: #faf8f5;;
|
||||
--accent: #d4c4b8;;
|
||||
--background-accent: #e8dfd6;;
|
||||
--background: #fffafa;;
|
||||
--card: #fff7f7;;
|
||||
--foreground: #1a0000;;
|
||||
--primary-cta: #ff1744;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #f5c4c7;;
|
||||
--background-accent: #f09199;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user