10 Commits

Author SHA1 Message Date
3858f33773 Update src/app/page.tsx 2026-03-11 22:23:58 +00:00
1915322a51 Update src/app/neighborhoods/page.tsx 2026-03-11 22:23:57 +00:00
496fe20786 Update src/app/contact/page.tsx 2026-03-11 22:23:57 +00:00
9fa381efc5 Update src/app/apartments/page.tsx 2026-03-11 22:23:56 +00:00
331348dbda Update src/app/page.tsx 2026-03-11 22:22:04 +00:00
0a25af2223 Update src/app/neighborhoods/page.tsx 2026-03-11 22:22:04 +00:00
4cb219a6a8 Update src/app/contact/page.tsx 2026-03-11 22:22:03 +00:00
a43bf32d9b Update src/app/apartments/page.tsx 2026-03-11 22:22:03 +00:00
c0686aa38a Merge version_2 into main
Merge version_2 into main
2026-03-11 21:58:41 +00:00
875e74a7ea Merge version_2 into main
Merge version_2 into main
2026-03-11 21:58:16 +00:00
4 changed files with 52 additions and 84 deletions

View File

@@ -49,7 +49,7 @@ export default function ApartmentsPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Vivimilano BnB"
brandName="Vivimilano"
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="Vivimilano"
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

@@ -2,12 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
import { MapPin, Coffee, Palette, Zap, Waves } from 'lucide-react';
export default function NeighborhoodsPage() {
return (
@@ -25,7 +24,7 @@ export default function NeighborhoodsPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Vivimilano BnB"
brandName="Vivimilano"
navItems={[
{ name: "Home", id: "/" },
{ name: "Neighborhoods", id: "/neighborhoods" },
@@ -41,58 +40,51 @@ export default function NeighborhoodsPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
title="Discover Milan's Most Authentic Neighborhoods"
<HeroCarouselLogo
logoText="DISCOVER MILAN'S NEIGHBORHOODS"
description="Explore the heart of Milan through its unique districts. Each quarter has its own personality, history, and charm. Live like a true Milanese in one of our carefully selected neighborhoods."
background={{ variant: "sparkles-gradient" }}
tag="Neighborhood Guide"
tagIcon={MapPin}
tagAnimation="slide-up"
buttons={[
{
text: "Browse Apartments", href: "/apartments"},
{
text: "Learn More", href: "#neighborhoods"},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/narrow-canal-middle-buildings-venice-italy_181624-11048.jpg?_wi=1"
imageAlt="Milan neighborhoods aerial view"
slides={[
{
imageSrc: "http://img.b2bpic.net/free-photo/bottom-arch-gothic-quarter-barcelona-bishops-bridge_1217-1736.jpg?_wi=1", imageAlt: "Milan Duomo Cathedral at sunrise"},
{
imageSrc: "http://img.b2bpic.net/free-photo/narrow-canal-middle-buildings-venice-italy_181624-11048.jpg?_wi=1", imageAlt: "Navigli Canal with evening lights"},
{
imageSrc: "http://img.b2bpic.net/free-photo/couple-honeymoon-milan_1303-5674.jpg?_wi=1", imageAlt: "Brera artistic quarter romantic street"},
{
imageSrc: "http://img.b2bpic.net/free-photo/woman-posing-playing-with-shopping-bags_23-2147645128.jpg?_wi=1", imageAlt: "Porta Romana elegant neighborhood"},
]}
autoplayDelay={4000}
showDimOverlay={true}
ariaLabel="Neighborhoods guide hero section"
/>
</div>
<div id="neighborhoods" data-section="neighborhoods">
<FeatureCardSix
features={[
{
id: 1,
title: "Porta Romana - Elegance & Authenticity", description: "The heart of Milanese elegance. Porta Romana combines historic charm with contemporary sophistication. Home to prestigious galleries, exclusive restaurants, and boutique shops along Via Santo Stefano.", imageSrc: "http://img.b2bpic.net/free-photo/sitting-room-with-old-furniture_116348-77.jpg?_wi=1", imageAlt: "Porta Romana elegant streets and architecture"},
{
id: 2,
title: "Brera - Artistic Soul", description: "Milan's artistic hub filled with galleries, studios, and creative energy. Wander through cobblestone streets, discover local artisans, and experience authentic Milanese culture. Perfect for those seeking cultural immersion.", imageSrc: "http://img.b2bpic.net/free-photo/couple-honeymoon-milan_1303-5674.jpg?_wi=2", imageAlt: "Brera artistic quarter with galleries"},
{
id: 3,
title: "Navigli - Canals & Nightlife", description: "Famous for its picturesque canals and vibrant atmosphere. Navigli is the epicenter of Milan's social scene with trendy bars, restaurants, and aperitivo culture. Perfect for evening strolls and authentic local experiences.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-listening-music-with-headphones-city-street_171337-16984.jpg?_wi=1", imageAlt: "Navigli canals with evening atmosphere"},
{
id: 4,
title: "Porta Venezia - Vibrant Living", description: "A lively neighborhood near Milano's Giardini Pubblici (public gardens). Close to museums, shopping districts, and excellent transportation. Ideal for those seeking a balance between urban energy and green spaces.", imageSrc: "http://img.b2bpic.net/free-photo/shinjuku-gyoen-national-garden_181624-27412.jpg?_wi=1", imageAlt: "Porta Venezia with public gardens"},
{
id: 5,
title: "Isola - Modern & Creative", description: "Milan's newest frontier for design and contemporary living. Once industrial, now home to cutting-edge architecture, design studios, and a thriving creative community. Perfect for those embracing modern Milan.", imageSrc: "http://img.b2bpic.net/free-photo/modern-tokyo-street-background_23-2149394880.jpg", imageAlt: "Isola neighborhood modern architecture"},
]}
<FeatureCardSixteen
title="Milan's Most Desirable Neighborhoods"
description="Each district offers a unique Milanese experience. From artistic Brera to vibrant Navigli, find the perfect neighborhood that matches your style."
tag="5 Exclusive Districts"
tagIcon={MapPin}
tagAnimation="slide-up"
negativeCard={{
items: [
"Distant from city center", "Lacking authenticity", "Without historic character", "Few local services"],
}}
positiveCard={{
items: [
"Porta Romana: Elegant and authentic, restaurants and venues", "Porta Venezia: Vibrant, near public gardens", "Brera: Artistic, romantic, full of galleries", "Isola: Modern and creative, near skyscrapers", "Navigli: Famous canals, aperitivos and nightlife"],
}}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{
text: "See All Apartments", href: "/apartments"},
]}
buttonAnimation="slide-up"
ariaLabel="Milan neighborhoods feature section"
/>
</div>
@@ -101,39 +93,28 @@ export default function NeighborhoodsPage() {
title="Activities & Attractions by Neighborhood"
description="Discover the best activities, restaurants, and attractions in each Milan district. Each neighborhood has its own unique offerings and local gems."
tag="Local Guide"
tagIcon={Coffee}
tagAnimation="slide-up"
blogs={[
{
id: "1", category: ["Porta Romana", "Dining"],
title: "Michelin-Starred Restaurants", excerpt: "Porta Romana is home to some of Milan's finest dining establishments. From traditional Lombard cuisine to innovative contemporary plates, discover culinary excellence in elegant settings.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-composition-flowers-interior-room_169016-5468.jpg?_wi=1", imageAlt: "Fine dining in Porta Romana", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Open Daily"},
id: "1", category: "Porta Romana", title: "Michelin-Starred Restaurants", excerpt: "Porta Romana is home to some of Milan's finest dining establishments. From traditional Lombard cuisine to innovative contemporary plates, discover culinary excellence in elegant settings.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-composition-flowers-interior-room_169016-5468.jpg?_wi=1", imageAlt: "Fine dining in Porta Romana", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Open Daily"},
{
id: "2", category: ["Brera", "Art"],
title: "Pinacoteca di Brera", excerpt: "One of Italy's most important art museums. Home to masterpieces by Caravaggio, Raphael, and Bellini. A cultural pilgrimage for art lovers exploring Milan's Brera neighborhood.", imageSrc: "http://img.b2bpic.net/free-photo/gothic-window-stained-glass-wooden-doors_169016-68675.jpg?_wi=1", imageAlt: "Pinacoteca di Brera art museum", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Closed Mondays"},
id: "2", category: "Brera", title: "Pinacoteca di Brera", excerpt: "One of Italy's most important art museums. Home to masterpieces by Caravaggio, Raphael, and Bellini. A cultural pilgrimage for art lovers exploring Milan's Brera neighborhood.", imageSrc: "http://img.b2bpic.net/free-photo/gothic-window-stained-glass-wooden-doors_169016-68675.jpg?_wi=1", imageAlt: "Pinacoteca di Brera art museum", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Closed Mondays"},
{
id: "3", category: ["Brera", "Shopping"],
title: "Via Brera Gallery Walk", excerpt: "Stroll through Brera's charming streets lined with independent galleries, vintage shops, and artisan boutiques. Perfect for discovering unique pieces and supporting local artists.", imageSrc: "http://img.b2bpic.net/free-photo/woman-posing-playing-with-shopping-bags_23-2147645128.jpg?_wi=1", imageAlt: "Via Brera shopping galleries", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Open Daily"},
id: "3", category: "Brera", title: "Via Brera Gallery Walk", excerpt: "Stroll through Brera's charming streets lined with independent galleries, vintage shops, and artisan boutiques. Perfect for discovering unique pieces and supporting local artists.", imageSrc: "http://img.b2bpic.net/free-photo/woman-posing-playing-with-shopping-bags_23-2147645128.jpg?_wi=1", imageAlt: "Via Brera shopping galleries", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Open Daily"},
{
id: "4", category: ["Navigli", "Nightlife"],
title: "Aperitivo Culture", excerpt: "Experience Milan's famous aperitivo tradition in Navigli. Enjoy craft cocktails and Italian nibbles on canal-side terraces as the sun sets over the water. A quintessential Milanese experience.", imageSrc: "http://img.b2bpic.net/free-photo/bottom-arch-gothic-quarter-barcelona-bishops-bridge_1217-1736.jpg?_wi=2", imageAlt: "Navigli aperitivo culture sunset", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Evenings & Weekends"},
id: "4", category: "Navigli", title: "Aperitivo Culture", excerpt: "Experience Milan's famous aperitivo tradition in Navigli. Enjoy craft cocktails and Italian nibbles on canal-side terraces as the sun sets over the water. A quintessential Milanese experience.", imageSrc: "http://img.b2bpic.net/free-photo/bottom-arch-gothic-quarter-barcelona-bishops-bridge_1217-1736.jpg?_wi=2", imageAlt: "Navigli aperitivo culture sunset", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Evenings & Weekends"},
{
id: "5", category: ["Navigli", "Markets"],
title: "Sunday Antique Markets", excerpt: "Every Sunday, Navigli hosts vibrant antique and vintage markets. Find unique treasures, vintage clothing, and local crafts while soaking in the neighborhood's bohemian atmosphere.", imageSrc: "http://img.b2bpic.net/free-photo/old-arch-bridge-grass-field-with-trees-building_181624-28637.jpg?_wi=1", imageAlt: "Navigli antique market", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sundays 9am-6pm"},
id: "5", category: "Navigli", title: "Sunday Antique Markets", excerpt: "Every Sunday, Navigli hosts vibrant antique and vintage markets. Find unique treasures, vintage clothing, and local crafts while soaking in the neighborhood's bohemian atmosphere.", imageSrc: "http://img.b2bpic.net/free-photo/old-arch-bridge-grass-field-with-trees-building_181624-28637.jpg?_wi=1", imageAlt: "Navigli antique market", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sundays 9am-6pm"},
{
id: "6", category: ["Porta Venezia", "Nature"],
title: "Giardini Pubblici (Public Gardens)", excerpt: "Milan's largest green space perfect for relaxing walks, picnics, and outdoor activities. Home to the Natural History Museum and plenty of shade under mature trees. An urban oasis.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-benches-modern-sauna-geometric-style_169016-70250.jpg?_wi=1", imageAlt: "Giardini Pubblici public gardens Milan", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Open Daily"},
id: "6", category: "Porta Venezia", title: "Giardini Pubblici (Public Gardens)", excerpt: "Milan's largest green space perfect for relaxing walks, picnics, and outdoor activities. Home to the Natural History Museum and plenty of shade under mature trees. An urban oasis.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-benches-modern-sauna-geometric-style_169016-70250.jpg?_wi=1", imageAlt: "Giardini Pubblici public gardens Milan", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Open Daily"},
{
id: "7", category: ["Isola", "Design"],
title: "Design District Studios", excerpt: "Explore Isola's cutting-edge design studios and contemporary galleries. Meet local designers, discover emerging artists, and experience Milan's innovative creative scene at its finest.", imageSrc: "http://img.b2bpic.net/free-photo/serious-male-boss-instructing-female-assistant_1262-20385.jpg?_wi=1", imageAlt: "Isola design district studios", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Appointments Recommended"},
id: "7", category: "Isola", title: "Design District Studios", excerpt: "Explore Isola's cutting-edge design studios and contemporary galleries. Meet local designers, discover emerging artists, and experience Milan's innovative creative scene at its finest.", imageSrc: "http://img.b2bpic.net/free-photo/serious-male-boss-instructing-female-assistant_1262-20385.jpg?_wi=1", imageAlt: "Isola design district studios", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Appointments Recommended"},
{
id: "8", category: ["Porta Romana", "History"],
title: "Via Santo Stefano Heritage Walk", excerpt: "Discover the history of Milan's most elegant street. Lined with Renaissance palaces, historic churches, and prestigious addresses, this street embodies Milanese sophistication and heritage.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3277.jpg?_wi=1", imageAlt: "Via Santo Stefano historic street", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Open Daily"},
id: "8", category: "Porta Romana", title: "Via Santo Stefano Heritage Walk", excerpt: "Discover the history of Milan's most elegant street. Lined with Renaissance palaces, historic churches, and prestigious addresses, this street embodies Milanese sophistication and heritage.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3277.jpg?_wi=1", imageAlt: "Via Santo Stefano historic street", authorName: "Vivimilano Guide", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Open Daily"},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
carouselMode="buttons"
ariaLabel="Neighborhood activities and attractions section"
/>
</div>
@@ -202,4 +183,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="Vivimilano"
navItems={[
{ name: "Home", id: "/" },
{ name: "Neighborhoods", id: "/neighborhoods" },
@@ -174,23 +174,17 @@ export default function HomePage() {
tag="Guida Turistica"
blogs={[
{
id: "1", category: ["Architettura", "Monumenti"],
title: "Duomo di Milano", excerpt: "Il meraviglioso Duomo è il simbolo di Milano. La cattedrale gotica più grande d'Italia con i suoi 135 pinnacoli rappresenta un capolavoro architettonico imperdibile.", imageSrc: "http://img.b2bpic.net/free-photo/gothic-window-stained-glass-wooden-doors_169016-68675.jpg?_wi=1", imageAlt: "Milan Duomo cathedral gothic architecture marble", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
id: "1", category: "Architettura", title: "Duomo di Milano", excerpt: "Il meraviglioso Duomo è il simbolo di Milano. La cattedrale gotica più grande d'Italia con i suoi 135 pinnacoli rappresenta un capolavoro architettonico imperdibile.", imageSrc: "http://img.b2bpic.net/free-photo/gothic-window-stained-glass-wooden-doors_169016-68675.jpg?_wi=1", imageAlt: "Milan Duomo cathedral gothic architecture marble", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
{
id: "2", category: ["Musei", "Storia"],
title: "Castello Sforzesco", excerpt: "Una fortezza medievale che ospita importanti musei e opere d'arte. Perfetto per scoprire la storia di Milano e i tesori culturali della Lombardia.", imageSrc: "http://img.b2bpic.net/free-photo/old-arch-bridge-grass-field-with-trees-building_181624-28637.jpg?_wi=2", imageAlt: "Castello Sforzesco Milan fortress medieval towers", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
id: "2", category: "Musei", title: "Castello Sforzesco", excerpt: "Una fortezza medievale che ospita importanti musei e opere d'arte. Perfetto per scoprire la storia di Milano e i tesori culturali della Lombardia.", imageSrc: "http://img.b2bpic.net/free-photo/old-arch-bridge-grass-field-with-trees-building_181624-28637.jpg?_wi=2", imageAlt: "Castello Sforzesco Milan fortress medieval towers", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
{
id: "3", category: ["Cultura", "Teatro"],
title: "Teatro alla Scala", excerpt: "Uno dei teatri più prestigiosi al mondo. Sede di straordinarie produzioni di opera e balletto. Un'esperienza culturale irrinunciabile per gli amanti dell'arte.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-benches-modern-sauna-geometric-style_169016-70250.jpg?_wi=2", imageAlt: "Teatro alla Scala Milan opera house facade", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
id: "3", category: "Cultura", title: "Teatro alla Scala", excerpt: "Uno dei teatri più prestigiosi al mondo. Sede di straordinarie produzioni di opera e balletto. Un'esperienza culturale irrinunciabile per gli amanti dell'arte.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-benches-modern-sauna-geometric-style_169016-70250.jpg?_wi=2", imageAlt: "Teatro alla Scala Milan opera house facade", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
{
id: "4", category: ["Shopping", "Architettura"],
title: "Galleria Vittorio Emanuele II", excerpt: "La galleria commerciale più elegante di Milano. Un capolavoro dell'architettura del XIX secolo dove shopping e bellezza si incontrano.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-listening-music-with-headphones-city-street_171337-16984.jpg?_wi=2", imageAlt: "Galleria Vittorio Emanuele Milan luxury shopping", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
id: "4", category: "Shopping", title: "Galleria Vittorio Emanuele II", excerpt: "La galleria commerciale più elegante di Milano. Un capolavoro dell'architettura del XIX secolo dove shopping e bellezza si incontrano.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-listening-music-with-headphones-city-street_171337-16984.jpg?_wi=2", imageAlt: "Galleria Vittorio Emanuele Milan luxury shopping", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
{
id: "5", category: ["Arte", "Restauri"],
title: "Santa Maria delle Grazie", excerpt: "Una chiesa rinascimentale celebre per ospitare 'L'Ultima Cena' di Leonardo da Vinci. Un pilastro della cultura artistica milanese.", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-shot-patterned-gray-concrete-building-ceiling_181624-2292.jpg", imageAlt: "Santa Maria delle Grazie Milan church Renaissance", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
id: "5", category: "Arte", title: "Santa Maria delle Grazie", excerpt: "Una chiesa rinascimentale celebre per ospitare 'L'Ultima Cena' di Leonardo da Vinci. Un pilastro della cultura artistica milanese.", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-shot-patterned-gray-concrete-building-ceiling_181624-2292.jpg", imageAlt: "Santa Maria delle Grazie Milan church Renaissance", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
{
id: "6", category: ["Natura", "Relax"],
title: "Parco Lambro e Giardini Pubblici", excerpt: "Spazi verdi tranquilli dove rilassarsi lontano dal traffico cittadino. Perfetti per passeggiate rigeneranti durante il vostro soggiorno a Milano.", imageSrc: "http://img.b2bpic.net/free-photo/shinjuku-gyoen-national-garden_181624-27412.jpg?_wi=2", imageAlt: "Milan public garden green park nature relaxing", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
id: "6", category: "Natura", title: "Parco Lambro e Giardini Pubblici", excerpt: "Spazi verdi tranquilli dove rilassarsi lontano dal traffico cittadino. Perfetti per passeggiate rigeneranti durante il vostro soggiorno a Milano.", imageSrc: "http://img.b2bpic.net/free-photo/shinjuku-gyoen-national-garden_181624-27412.jpg?_wi=2", imageAlt: "Milan public garden green park nature relaxing", authorName: "Guida Vivimilano", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-man-with-coffee-cup-front-view_23-2149915931.jpg", date: "Sempre Aperto"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -289,4 +283,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}