Update src/app/page.tsx

This commit is contained in:
2026-03-18 17:33:26 +00:00
parent f04a47f13e
commit f4a3784fed

View File

@@ -10,6 +10,7 @@ import AboutMetric from '@/components/sections/about/AboutMetric';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactCTA from '@/components/sections/contact/ContactCTA'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import ButtonExpandHover from '@/components/button/ButtonExpandHover';
import { Flame, Pizza, Clock, Heart, Star, Facebook, Instagram, Phone } from 'lucide-react'; import { Flame, Pizza, Clock, Heart, Star, Facebook, Instagram, Phone } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
@@ -118,6 +119,9 @@ export default function LandingPage() {
buttons={[{ text: "View Full Menu", href: "#" }]} buttons={[{ text: "View Full Menu", href: "#" }]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
ariaLabel="Menu specialties and products" ariaLabel="Menu specialties and products"
priceButtonProps={{
children: <ButtonExpandHover text="Order" />
}}
/> />
</div> </div>
@@ -186,4 +190,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }