Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 02d581c4b1 | |||
| 6016b8ba69 | |||
| c01ff54de4 | |||
| ca1eddab9d | |||
| 4b972c2d73 | |||
| 4baf4f985e |
@@ -1,51 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
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 { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/variables.css";
|
||||||
import Tag from "@/tag/Tag";
|
import "./styles/base.css";
|
||||||
|
|
||||||
const interTight = Inter_Tight({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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 = {
|
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", description: "Delicious burgers, chicken, and chips at unbeatable prices"};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${interTight.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1413,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,9 +7,9 @@ import ProductCardThree from "@/components/sections/product/ProductCardThree";
|
|||||||
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
||||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
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 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() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -32,11 +32,12 @@ export default function LandingPage() {
|
|||||||
{ name: "Menu", id: "menu" },
|
{ name: "Menu", id: "menu" },
|
||||||
{ name: "Deals", id: "deals" },
|
{ name: "Deals", id: "deals" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Order", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
{ name: "Contact", id: "footer" },
|
{ name: "Footer", id: "footer" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Order Now", href: "#contact"}}
|
text: "Order Now", href: "#menu"
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -55,16 +56,20 @@ export default function LandingPage() {
|
|||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
name: "Sarah Mitchell", handle: "Food Lover", testimonial: "Best burgers in town at the best prices! Fast service too!", rating: 5,
|
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,
|
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,
|
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,
|
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}
|
testimonialRotationInterval={5000}
|
||||||
buttons={[
|
buttons={[
|
||||||
@@ -181,13 +186,17 @@ export default function LandingPage() {
|
|||||||
author="Alex Johnson"
|
author="Alex Johnson"
|
||||||
avatars={[
|
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"
|
ratingAnimation="slide-up"
|
||||||
avatarsAnimation="slide-up"
|
avatarsAnimation="slide-up"
|
||||||
@@ -196,15 +205,19 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactCTA
|
||||||
text="Ready to satisfy your cravings? Order your favorite meal today and enjoy delicious food at unbeatable prices!"
|
tag="Get in Touch"
|
||||||
animationType="entrance-slide"
|
tagIcon={Mail}
|
||||||
background={{ variant: "plain" }}
|
tagAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
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={[
|
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" },
|
{ text: "Call Us", href: "tel:555-0123" },
|
||||||
]}
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -224,7 +237,7 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact", items: [
|
title: "Contact", items: [
|
||||||
{ label: "Order Online", href: "#contact" },
|
{ label: "Get in Touch", href: "#contact" },
|
||||||
{ label: "Call: 555-0123", href: "tel:555-0123" },
|
{ label: "Call: 555-0123", href: "tel:555-0123" },
|
||||||
{ label: "Visit Us", href: "#" },
|
{ label: "Visit Us", href: "#" },
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user