Merge version_3 into main #8

Merged
bender merged 4 commits from version_3 into main 2026-03-11 22:22:08 +00:00
4 changed files with 12 additions and 19 deletions

View File

@@ -49,7 +49,7 @@ export default function ApartmentsPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Vivimilano BnB"
brandName={<span><span style={{ color: '#8B6F47' }}>Vivi</span><span style={{ color: '#000000' }}>Milano</span></span>}
navItems={[
{ name: "Home", id: "/" },
{ name: "Neighborhoods", id: "/neighborhoods" },
@@ -153,4 +153,4 @@ export default function ApartmentsPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -18,8 +18,7 @@ export default function ContactPage() {
const footerColumns = [
{
title: "Navigazione",
items: [
title: "Navigazione", items: [
{ label: "Home", href: "/" },
{ label: "I Nostri Quartieri", href: "/neighborhoods" },
{ label: "Appartamenti", href: "/apartments" },
@@ -27,8 +26,7 @@ export default function ContactPage() {
],
},
{
title: "Contatti",
items: [
title: "Contatti", items: [
{ label: "Email: info@vivimilano.com", href: "mailto:info@vivimilano.com" },
{ label: "Telefono: +39 02 1234 5678", href: "tel:+390212345678" },
{ label: "WhatsApp: +39 324 567 8901", href: "https://wa.me/393245678901" },
@@ -36,8 +34,7 @@ export default function ContactPage() {
],
},
{
title: "Legale",
items: [
title: "Legale", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Termini e Condizioni", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -61,15 +58,13 @@ export default function ContactPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Vivimilano BnB"
brandName={<span><span style={{ color: '#8B6F47' }}>Vivi</span><span style={{ color: '#000000' }}>Milano</span></span>}
navItems={navItems.map((item) => ({
name: item.name,
id: item.id,
}))}
button={{
text: "Book Now",
href: "/apartments",
}}
text: "Book Now", href: "/apartments"}}
buttonClassName="font-semibold"
className="z-50"
/>
@@ -85,9 +80,7 @@ export default function ContactPage() {
imageAlt="modern apartment interior minimalist design"
buttons={[
{
text: "Inviaci un Messaggio",
href: "#contact-form",
},
text: "Inviaci un Messaggio", href: "#contact-form"},
]}
/>
</div>

View File

@@ -25,7 +25,7 @@ export default function NeighborhoodsPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Vivimilano BnB"
brandName={<span><span style={{ color: '#8B6F47' }}>Vivi</span><span style={{ color: '#000000' }}>Milano</span></span>}
navItems={[
{ name: "Home", id: "/" },
{ name: "Neighborhoods", id: "/neighborhoods" },
@@ -202,4 +202,4 @@ export default function NeighborhoodsPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -29,7 +29,7 @@ export default function HomePage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Vivimilano BnB"
brandName={<span><span style={{ color: '#8B6F47' }}>Vivi</span><span style={{ color: '#000000' }}>Milano</span></span>}
navItems={[
{ name: "Home", id: "/" },
{ name: "Neighborhoods", id: "/neighborhoods" },
@@ -289,4 +289,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}