Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 62e44c28ee | |||
| 655522d614 | |||
| b8383f278f | |||
| b1dd8ddc08 | |||
| 9eb2fabe9c | |||
| b74a63d740 | |||
| c0e043c2ee |
59
src/app/about/page.tsx
Normal file
59
src/app/about/page.tsx
Normal file
@@ -0,0 +1,59 @@
|
||||
"use client";
|
||||
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
|
||||
export default function AboutPage() {
|
||||
const updatedNavItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Trattamenti", id: "/#products" },
|
||||
{ name: "Chi Siamo", id: "/about" },
|
||||
{ name: "Testimonianze", id: "/#testimonials" },
|
||||
{ name: "Domande Frequenti", id: "/#faq" },
|
||||
{ name: "Contatti", id: "/#contact" }
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="small"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="blurBottom"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="Beauty Elite"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3F1l2ziUL9Ga3VghepYfdJllcYg/uploaded-1781250323692-gcrcq7n1.png"
|
||||
logoAlt="Beauty Elite Logo"
|
||||
navItems={updatedNavItems}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-content" data-section="about-content">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[{ type: "text", content: "La Nostra Filosofia: " }, { type: "text", content: "Bellezza, Eleganza, Benessere" }]}
|
||||
buttons={[{ text: "Scopri di Più" }]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3F1l2ziUL9Ga3VghepYfdJllcYg/uploaded-1781250323692-gcrcq7n1.png"
|
||||
logoAlt="Beauty Elite Logo"
|
||||
logoText="Beauty Elite"
|
||||
leftLink={{ text: "Informativa sulla Privacy", href: "#" }}
|
||||
rightLink={{ text: "Termini di Servizio", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -13,6 +13,15 @@ import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
import { Sparkles, Heart, Leaf } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
const updatedNavItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Trattamenti", id: "/#products" },
|
||||
{ name: "Chi Siamo", id: "/about" },
|
||||
{ name: "Testimonianze", id: "/#testimonials" },
|
||||
{ name: "Domande Frequenti", id: "/#faq" },
|
||||
{ name: "Contatti", id: "/#contact" }
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -31,14 +40,7 @@ export default function LandingPage() {
|
||||
brandName="Beauty Elite"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3F1l2ziUL9Ga3VghepYfdJllcYg/uploaded-1781250323692-gcrcq7n1.png"
|
||||
logoAlt="Beauty Elite Logo"
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Trattamenti", id: "products" },
|
||||
{ name: "Chi Siamo", id: "about" },
|
||||
{ name: "Testimonianze", id: "testimonials" },
|
||||
{ name: "Domande Frequenti", id: "faq" },
|
||||
{ name: "Contatti", id: "contact" }
|
||||
]}
|
||||
navItems={updatedNavItems}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -47,8 +49,7 @@ export default function LandingPage() {
|
||||
title="Scatena la Tua Luminosità Interiore"
|
||||
description="A Beauty Elite, uniamo arte e scienza per rivelare la tua bellezza più autentica. Scopri un santuario dove trattamenti di lusso incontrano cure personalizzate per un'esperienza davvero trasformativa."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[{ text: "Esplora i Trattamenti", href: "#products" }]
|
||||
}
|
||||
buttons={[{ text: "Esplora i Trattamenti", href: "/#products" }]}
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-standing-bathroom_1157-20467.jpg", imageAlt: "Ambiente spa sereno con luci soffuse" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/young-woman-relaxing-spa-salon_176420-7518.jpg", imageAlt: "Donna che riceve un lussuoso trattamento viso" },
|
||||
@@ -62,10 +63,8 @@ export default function LandingPage() {
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[{ type: "text", content: "La Nostra Filosofia: " }, { type: "text", content: "Bellezza, Eleganza, Benessere" }]
|
||||
}
|
||||
buttons={[{ text: "Scopri di Più" }]
|
||||
}
|
||||
heading={[{ type: "text", content: "La Nostra Filosofia: " }, { type: "text", content: "Bellezza, Eleganza, Benessere" }]}
|
||||
buttons={[{ text: "Scopri di Più", href: "/about" }]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user