14 Commits

Author SHA1 Message Date
bc3e35c01c Merge version_7 into main
Merge version_7 into main
2026-01-07 11:23:30 +00:00
2cb68456e7 Update src/app/page.tsx 2026-01-07 11:23:25 +00:00
3291fb639f Merge version_6 into main
Merge version_6 into main
2026-01-07 10:59:29 +00:00
cf313e3783 Update src/app/page.tsx 2026-01-07 10:59:24 +00:00
8317b34325 Merge version_5 into main
Merge version_5 into main
2026-01-07 10:55:48 +00:00
94c8814bfd Update src/app/page.tsx 2026-01-07 10:55:44 +00:00
574fd9983b Merge version_4 into main
Merge version_4 into main
2026-01-07 10:36:03 +00:00
981ae6f5c9 Update src/app/page.tsx 2026-01-07 10:35:58 +00:00
30de271d0f Update src/app/layout.tsx 2026-01-07 10:35:57 +00:00
e7e1a46a53 Update src/app/globals.css 2026-01-07 10:35:56 +00:00
fb393e977e Merge version_3 into main
Merge version_3 into main
2026-01-07 10:26:43 +00:00
c79c8b33ad Update src/app/page.tsx 2026-01-07 10:26:39 +00:00
8bff55405d Merge version_2 into main
Merge version_2 into main
2026-01-07 10:18:25 +00:00
20f86ee8b7 Update src/app/page.tsx 2026-01-07 10:18:21 +00:00
3 changed files with 31 additions and 17 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #f8fcff;; --background: #000000;;
--card: #ffffff;; --card: #1a1a1a;;
--foreground: #00101f;; --foreground: #ffffff;;
--primary-cta: #409fff;; --primary-cta: #ff4500;;
--secondary-cta: #ffffff;; --secondary-cta: #151515;;
--accent: #c7e2fc;; --accent: #ff6b35;;
--background-accent: #9bcfff;; --background-accent: #ff8c42;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1260,4 +1260,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Award, ChefHat, Crown, Flame, MapPin, Mail, Phone, Sparkles, Wine } from "lucide-react"; import { Award, ChefHat, Crown, Flame, MapPin, Mail, Phone, Sparkles, Wine } from "lucide-react";
@@ -9,7 +9,7 @@ import FeatureCardFourteen from '@/components/sections/feature/FeatureCardFourte
import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import TeamCardFive from '@/components/sections/team/TeamCardFive'; import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import ContactInline from '@/components/sections/contact/ContactInline'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSplit from '@/components/sections/footer/FooterSplit'; import FooterSplit from '@/components/sections/footer/FooterSplit';
export default function SteakhousePage() { export default function SteakhousePage() {
@@ -53,7 +53,7 @@ export default function SteakhousePage() {
text: "Reserve Your Table", href: "contact" text: "Reserve Your Table", href: "contact"
}, },
{ {
text: "View Menu", href: "menu" text: "View Menu", href: "www.google.com"
} }
]} ]}
mediaItems={[ mediaItems={[
@@ -96,7 +96,7 @@ export default function SteakhousePage() {
title: "Timeless Ambiance", description: "Classic steakhouse elegance with warm lighting, leather seating, and refined hospitality" title: "Timeless Ambiance", description: "Classic steakhouse elegance with warm lighting, leather seating, and refined hospitality"
} }
]} ]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767780827923-j7ohjz41.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767783552996-p1200x5t.jpg"
imageAlt="Elegant steakhouse interior with intimate dining" imageAlt="Elegant steakhouse interior with intimate dining"
imagePosition="right" imagePosition="right"
/> />
@@ -216,12 +216,26 @@ export default function SteakhousePage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactInline <ContactSplitForm
text="Ready to indulge in the perfect steak?" title="Ready to indulge in the perfect steak?"
animationType="background-highlight" description="Reserve your table now and experience the finest steakhouse dining. Our team looks forward to welcoming you."
inputPlaceholder="Enter your email" inputs={[
{
name: "name", type: "text", placeholder: "Your Name", required: true
},
{
name: "email", type: "email", placeholder: "Your Email", required: true
}
]}
textarea={{
name: "message", placeholder: "Tell us about your dining preferences", rows: 5,
required: true
}}
buttonText="Reserve Your Table" buttonText="Reserve Your Table"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767783332815-sh2eh5ik.jpg"
imageAlt="Elegant steakhouse interior"
mediaPosition="right"
/> />
</div> </div>
@@ -272,4 +286,4 @@ export default function SteakhousePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }