6 Commits

Author SHA1 Message Date
02d581c4b1 Update src/app/page.tsx 2026-03-04 11:21:09 +00:00
6016b8ba69 Update src/app/page.tsx 2026-03-04 11:19:53 +00:00
c01ff54de4 Update src/app/layout.tsx 2026-03-04 11:19:53 +00:00
ca1eddab9d Merge version_1 into main
Merge version_1 into main
2026-03-04 11:16:46 +00:00
4b972c2d73 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:15:40 +00:00
4baf4f985e Merge version_1 into main
Merge version_1 into main
2026-03-04 11:14:07 +00:00
2 changed files with 41 additions and 58 deletions

View File

@@ -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";
import "./styles/variables.css";
import "./styles/base.css";
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"],
});
const inter = 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: "Burger Blast", description: "Delicious burgers, chicken, and chips at unbeatable prices"};
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.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -7,9 +7,9 @@ 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 ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Award, CheckCircle, DollarSign, Flame, Heart, Leaf, Sparkles, Star, TrendingUp, Zap } from "lucide-react";
import { Award, CheckCircle, DollarSign, Flame, Heart, Leaf, Mail, Sparkles, Star, TrendingUp, Zap } from "lucide-react";
export default function LandingPage() {
return (
@@ -32,11 +32,12 @@ export default function LandingPage() {
{ name: "Menu", id: "menu" },
{ name: "Deals", id: "deals" },
{ name: "About", id: "about" },
{ name: "Order", id: "contact" },
{ name: "Contact", id: "footer" },
{ name: "Contact", id: "contact" },
{ name: "Footer", id: "footer" },
]}
button={{
text: "Order Now", href: "#contact"}}
text: "Order Now", href: "#menu"
}}
/>
</div>
@@ -55,16 +56,20 @@ export default function LandingPage() {
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"},
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"},
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"},
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"},
imageSrc: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-looking-happy_1298-197.jpg"
},
]}
testimonialRotationInterval={5000}
buttons={[
@@ -181,13 +186,17 @@ export default function LandingPage() {
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/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/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-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"},
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"
@@ -196,15 +205,19 @@ export default function LandingPage() {
</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}
<ContactCTA
tag="Get in Touch"
tagIcon={Mail}
tagAnimation="slide-up"
title="Ready to Satisfy Your Cravings?"
description="Have questions about our menu or special requests? We'd love to hear from you! Reach out to our team and we'll get back to you as soon as possible."
buttons={[
{ text: "Order Now", href: "https://www.example.com/order" },
{ text: "Send Message", href: "mailto:info@burgerblast.com" },
{ text: "Call Us", href: "tel:555-0123" },
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
@@ -224,7 +237,7 @@ export default function LandingPage() {
},
{
title: "Contact", items: [
{ label: "Order Online", href: "#contact" },
{ label: "Get in Touch", href: "#contact" },
{ label: "Call: 555-0123", href: "tel:555-0123" },
{ label: "Visit Us", href: "#" },
],