diff --git a/src/components/sections/HeroSection.tsx b/src/components/sections/HeroSection.tsx new file mode 100644 index 0000000..a6e458b --- /dev/null +++ b/src/components/sections/HeroSection.tsx @@ -0,0 +1,40 @@ +import Image from "next/image" +import Link from "next/link" + +export default function HeroSection() { + const imageUrl = "https://images.pexels.com/photos/3498/italian-pizza-restaurant-italy.jpg?auto=compress&cs=tinysrgb&h=650&w=940" + const headline = "Bona Vista" + const subtitle = "A Rome-based restaurant that blends traditional Italian recipes with a nature-inspired, earthy brand identity —." + + return ( +
+ + {imageUrl ? ( +
+ +
+ ) : ( +
+ )} +
+
+

Authentic Cuisine

+

{headline}

+

{subtitle}

+ + View Our Menu + +
+
+ ) +}