Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0e5737653f | |||
| 7af8b2bfef | |||
| 7857e93b41 | |||
| b4b334eb39 | |||
| 02d581c4b1 | |||
| d36def934a | |||
| 6016b8ba69 | |||
| c01ff54de4 | |||
| ca1eddab9d | |||
| 4b972c2d73 | |||
| 4baf4f985e |
@@ -1,51 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Burger Blast - Cheap, Fresh Fast Food | Burgers & Chicken", description: "Order delicious burgers, crispy chicken, fries & milkshakes at unbeatable prices. Fast service, fresh ingredients, and incredible value every time!", keywords: "fast food, burgers, chicken, chips, fries, milkshakes, cheap, affordable, quick service", openGraph: {
|
||||
title: "Burger Blast - Delicious Fast Food at Great Prices", description: "Get fresh burgers, chicken strips, fries & milkshakes at prices you'll love. Order now!", type: "website", siteName: "Burger Blast", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/delicious-cheeseburger-with-fresh-toppings_9975-24757.jpg", alt: "Delicious Burger Blast burgers"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Burger Blast - Fresh Fast Food, Unbeatable Prices", description: "Order delicious burgers & chicken now!", images: ["http://img.b2bpic.net/free-photo/delicious-cheeseburger-with-fresh-toppings_9975-24757.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Welcome", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${interTight.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
221
src/app/page.tsx
221
src/app/page.tsx
@@ -2,14 +2,8 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
|
||||
import ProductCardThree from "@/components/sections/product/ProductCardThree";
|
||||
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
import { Award, CheckCircle, DollarSign, Flame, Heart, Leaf, Sparkles, Star, TrendingUp, Zap } from "lucide-react";
|
||||
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
|
||||
import { Sparkles } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -27,216 +21,31 @@ export default function LandingPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Burger Blast"
|
||||
brandName="Webild"
|
||||
navItems={[
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Deals", id: "deals" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Order", id: "contact" },
|
||||
{ name: "Contact", id: "footer" },
|
||||
{ name: "Home", id: "/" },
|
||||
]}
|
||||
button={{
|
||||
text: "Order Now", href: "#contact"}}
|
||||
text: "Get Started", href: "#"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
title="Delicious Burgers, Chicken & Chips - Unbeatable Prices!"
|
||||
description="Get mouth-watering fast food without breaking the bank. Order now and taste the difference of fresh, quality ingredients at prices you'll love."
|
||||
tag="FAST & FRESH"
|
||||
tagIcon={Zap}
|
||||
<HeroBillboardScroll
|
||||
title="Welcome to Your New Website"
|
||||
description="Start building something amazing with a fresh, clean slate. Create, customize, and deploy with ease."
|
||||
tag="Fresh Start"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/delicious-cheeseburger-with-fresh-toppings_9975-24757.jpg?_wi=1"
|
||||
imageAlt="Delicious gourmet burger"
|
||||
imagePosition="right"
|
||||
mediaAnimation="blur-reveal"
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah Mitchell", handle: "Food Lover", testimonial: "Best burgers in town at the best prices! Fast service too!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-handsome-male-smiling_181624-41237.jpg"},
|
||||
{
|
||||
name: "James Chen", handle: "Busy Professional", testimonial: "Quick lunch spot with amazing quality. Can't beat the value!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg"},
|
||||
{
|
||||
name: "Emma Rodriguez", handle: "Family", testimonial: "Kids love the chicken strips and milkshakes. Great deals!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg"},
|
||||
{
|
||||
name: "Marcus Thompson", handle: "Regular Customer", testimonial: "My go-to place for a quick, delicious meal. Highly recommend!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-looking-happy_1298-197.jpg"},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=1000&h=800&fit=crop"
|
||||
imageAlt="Welcome image"
|
||||
buttons={[
|
||||
{ text: "Order Online", href: "#contact" },
|
||||
{ text: "View Menu", href: "#menu" },
|
||||
{ text: "Get Started", href: "#" },
|
||||
{ text: "Learn More", href: "#" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardThree
|
||||
title="Menu - Fresh & Affordable"
|
||||
description="Check out our amazing selection of burgers, chicken, chips, and delicious milkshakes. All made fresh to order!"
|
||||
tag="LIMITED TIME DEALS"
|
||||
tagIcon={Flame}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[{ text: "See All Items", href: "#" }]}
|
||||
buttonAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "burger-1", name: "Classic Cheeseburger", price: "$4.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-knife-tasty-meat-sandwich-chicken-nuggets-tomatoes-with-stem-pepper-wooden-board-sauce-ketchup-dark-blue-surface_179666-42441.jpg?_wi=1", imageAlt: "Classic cheeseburger", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "burger-2", name: "Double Stack Burger", price: "$6.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-knife-tasty-meat-sandwich-chicken-nuggets-tomatoes-with-stem-pepper-wooden-board-sauce-ketchup-dark-blue-surface_179666-42441.jpg?_wi=2", imageAlt: "Double stack burger", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "burger-3", name: "Deluxe Bacon Burger", price: "$7.49", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-knife-tasty-meat-sandwich-chicken-nuggets-tomatoes-with-stem-pepper-wooden-board-sauce-ketchup-dark-blue-surface_179666-42441.jpg?_wi=3", imageAlt: "Bacon burger", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "chicken-1", name: "Crispy Chicken Strips", price: "$5.99", imageSrc: "http://img.b2bpic.net/free-photo/crispy-fried-chicken-tenders_123827-36386.jpg?_wi=1", imageAlt: "Chicken strips", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "chicken-2", name: "Spicy Chicken Sandwich", price: "$6.49", imageSrc: "http://img.b2bpic.net/free-photo/crispy-fried-chicken-tenders_123827-36386.jpg?_wi=2", imageAlt: "Chicken sandwich", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "sides-1", name: "Golden Crispy Fries", price: "$2.49", imageSrc: "http://img.b2bpic.net/free-photo/delicious-hot-french-fries-with-red-sauce-served-table_632805-37.jpg", imageAlt: "French fries", initialQuantity: 1,
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="deals" data-section="deals">
|
||||
<PricingCardEight
|
||||
title="Unbeatable Combo Deals"
|
||||
description="Save more when you bundle! Our combo meals give you incredible value."
|
||||
tag="BEST VALUE"
|
||||
tagIcon={TrendingUp}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "combo-1", badge: "POPULAR", badgeIcon: Star,
|
||||
price: "$9.99", subtitle: "Perfect for one", buttons: [{ text: "Add to Cart", href: "#" }],
|
||||
features: ["1 Burger", "1 Order of Fries", "1 Drink"],
|
||||
},
|
||||
{
|
||||
id: "combo-2", badge: "BEST VALUE", badgeIcon: Sparkles,
|
||||
price: "$19.99", subtitle: "Great for 2 people", buttons: [{ text: "Add to Cart", href: "#" }],
|
||||
features: ["2 Burgers", "1 Chicken Sandwich", "2 Orders of Fries", "2 Drinks"],
|
||||
},
|
||||
{
|
||||
id: "combo-3", badge: "FAMILY PACK", badgeIcon: Heart,
|
||||
price: "$34.99", subtitle: "Feeds 4-5 people", buttons: [{ text: "Add to Cart", href: "#" }],
|
||||
features: ["4 Burgers", "4 Chicken Strips", "3 Orders of Fries", "4 Drinks", "Milkshakes for 2"],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
title="Why Burger Blast?"
|
||||
description="We're committed to serving you the freshest food at the lowest prices. No compromises on quality, just pure deliciousness."
|
||||
tag="OUR STORY"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fashionable-african-american-woman-black-cap-chilling-cozy-cafe_627829-5870.jpg"
|
||||
imageAlt="Restaurant interior"
|
||||
imagePosition="right"
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Fresh Ingredients Daily", description: "We use only the freshest ingredients prepared fresh to order every single day.", icon: Leaf,
|
||||
},
|
||||
{
|
||||
title: "Unbeatable Prices", description: "Premium quality fast food without the premium price tag. Great value every time.", icon: DollarSign,
|
||||
},
|
||||
{
|
||||
title: "Quick Service", description: "Get your order fast! Average wait time of just 5-10 minutes from order to delivery.", icon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Made Fresh To Order", description: "No pre-made food here. Everything is prepared fresh when you order it.", icon: CheckCircle,
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Order Now", href: "#contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
testimonial="Burger Blast has become my favorite spot for quick, delicious meals. The quality is outstanding and the prices are unbeatable. I've recommended them to all my friends!"
|
||||
rating={5}
|
||||
author="Alex Johnson"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/closeup-shot-handsome-male-smiling_181624-41237.jpg", alt: "Customer 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg", alt: "Customer 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", alt: "Customer 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-looking-happy_1298-197.jpg", alt: "Customer 4"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to satisfy your cravings? Order your favorite meal today and enjoy delicious food at unbeatable prices!"
|
||||
animationType="entrance-slide"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Order Now", href: "https://www.example.com/order" },
|
||||
{ text: "Call Us", href: "tel:555-0123" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/delicious-cheeseburger-with-fresh-toppings_9975-24757.jpg?_wi=2"
|
||||
imageAlt="Burger Blast footer"
|
||||
logoText="Burger Blast"
|
||||
copyrightText="© 2025 Burger Blast. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Menu", href: "#menu" },
|
||||
{ label: "Deals", href: "#deals" },
|
||||
{ label: "About Us", href: "#about" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Order Online", href: "#contact" },
|
||||
{ label: "Call: 555-0123", href: "tel:555-0123" },
|
||||
{ label: "Visit Us", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Follow Us", items: [
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user