diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 692bce9..bf13d0c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,7 +5,8 @@ import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Dolomiti - Artisan Sandwiches & Wood-Fired Pizza", description: "Taste the Heights of Flavor. Authentic Italian sandwiches and wood-fired pizza crafted fresh daily."}; + title: "Dolomiti - Artisan Sandwiches & Wood-Fired Pizza", description: "Taste the Heights of Flavor. Authentic Italian sandwiches and wood-fired pizza crafted fresh daily." +}; export default function RootLayout({ children, @@ -1384,4 +1385,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 1674eb2..3fff1c1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,11 +7,11 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { CheckCircle, Flame, Heart, Leaf, Sparkles, Star } from 'lucide-react'; +import { CheckCircle, Flame, Heart, Leaf, Sparkles, Star, Quote } from 'lucide-react'; export default function LandingPage() { return ( @@ -72,7 +72,8 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} names={[ - "Fresh Bread Daily", "Premium Ingredients", "Generous Portions", "Italian Tradition", "Friendly Service", "Clean Atmosphere", "Custom Orders", "Wood-Fired Pizza"]} + "Fresh Bread Daily", "Premium Ingredients", "Generous Portions", "Italian Tradition", "Friendly Service", "Clean Atmosphere", "Custom Orders", "Wood-Fired Pizza" + ]} speed={40} showCard={true} tagAnimation="slide-up" @@ -87,13 +88,16 @@ export default function LandingPage() { products={[ { id: "1", brand: "Signature", name: "The Southside Pope", price: "$14.95", rating: 5, - reviewCount: "4.8k", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-slate-with-cucumber-slices-spinach_23-2148465171.jpg", imageAlt: "The Southside Pope - Bold Italian meats sandwich"}, + reviewCount: "4.8k", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-slate-with-cucumber-slices-spinach_23-2148465171.jpg", imageAlt: "The Southside Pope - Bold Italian meats sandwich" + }, { id: "2", brand: "Masterpiece", name: "The Duomo", price: "$15.95", rating: 5, - reviewCount: "3.2k", imageSrc: "http://img.b2bpic.net/free-photo/club-sandwiches-lying-wooden-board-radish-cherry-tomatoes-green-onion_482257-36171.jpg", imageAlt: "The Duomo - Layered flavor masterpiece"}, + reviewCount: "3.2k", imageSrc: "http://img.b2bpic.net/free-photo/club-sandwiches-lying-wooden-board-radish-cherry-tomatoes-green-onion_482257-36171.jpg", imageAlt: "The Duomo - Layered flavor masterpiece" + }, { id: "3", brand: "Fresh Roasted", name: "Turkey Specialty", price: "$13.95", rating: 5, - reviewCount: "2.9k", imageSrc: "http://img.b2bpic.net/free-photo/picnic-day-with-chicken-sandwich_1147-27.jpg", imageAlt: "Turkey Specialty - Fresh roasted turkey sandwich"}, + reviewCount: "2.9k", imageSrc: "http://img.b2bpic.net/free-photo/picnic-day-with-chicken-sandwich_1147-27.jpg", imageAlt: "Turkey Specialty - Fresh roasted turkey sandwich" + }, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -137,17 +141,20 @@ export default function LandingPage() { plans={[ { id: "1", badge: "Classic", price: "$12.95", subtitle: "Timeless Italian tradition", features: [ - "San Marzano tomatoes", "Fresh mozzarella", "Fresh basil", "Extra virgin olive oil"], + "San Marzano tomatoes", "Fresh mozzarella", "Fresh basil", "Extra virgin olive oil" + ], badgeIcon: Leaf, }, { id: "2", badge: "Spicy", price: "$14.95", subtitle: "For heat lovers", features: [ - "Spicy Italian meats", "Fresh mozzarella", "Hot peppers", "Calabrian chili oil"], + "Spicy Italian meats", "Fresh mozzarella", "Hot peppers", "Calabrian chili oil" + ], badgeIcon: Flame, }, { id: "3", badge: "Gourmet", price: "$16.95", subtitle: "Luxury redefined", features: [ - "White truffle mushrooms", "Creamy ricotta", "Wild arugula", "Truffle oil drizzle"], + "White truffle mushrooms", "Creamy ricotta", "Wild arugula", "Truffle oil drizzle" + ], badgeIcon: Sparkles, }, ]} @@ -159,25 +166,29 @@ export default function LandingPage() {
- ); -} +} \ No newline at end of file