16 Commits

Author SHA1 Message Date
59f5b88a7a Bob AI: add a button on the cards of signature creations t... 2026-02-07 20:28:14 +00:00
4c03643865 Merge version_8 into main
Merge version_8 into main
2026-02-07 20:23:14 +00:00
d24ea2dc75 Bob AI: Change the card color to red 2026-02-07 20:22:38 +00:00
77bea668f6 Merge version_7 into main
Merge version_7 into main
2026-02-07 20:22:11 +00:00
f0b54eb12c Bob AI: Make the background color white but the button col... 2026-02-07 20:21:37 +00:00
9ff2d7bb2f Merge version_6 into main
Merge version_6 into main
2026-02-07 20:20:52 +00:00
9243180852 Bob AI: Okay actually change it to green 2026-02-07 20:20:18 +00:00
b9ddddc25f Merge version_5 into main
Merge version_5 into main
2026-02-07 20:19:50 +00:00
3fb83987e1 Bob AI: Change the color red to blue 2026-02-07 20:19:16 +00:00
217a7d4fa0 Merge version_4 into main
Merge version_4 into main
2026-02-07 20:16:27 +00:00
d25bc8d876 Bob AI: Change the font of the entire site to inter for bo... 2026-02-07 20:15:53 +00:00
8568255e87 Bob AI: Editing section ([data-webild-id="webild-177049511... 2026-02-07 20:15:37 +00:00
e3b7da1f24 Merge version_3 into main
Merge version_3 into main
2026-02-07 20:10:33 +00:00
bd531a992c Bob AI: the font on the section that was just added in is ... 2026-02-07 20:09:59 +00:00
a72a232f35 Merge version_2 into main
Merge version_2 into main
2026-02-07 20:06:19 +00:00
a6ed2bad9b Bob AI: [Block: pricing-card-two|Pricing Card Two|/blocks/... 2026-02-07 20:05:45 +00:00
4 changed files with 73 additions and 15 deletions

View File

@@ -10,6 +10,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { ChefHat, Fish, Flame, Star, Trophy, Users, Calendar, Utensils } from "lucide-react";
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
function handleReservation(email: string) {
console.log('Reservation request for:', email);
@@ -216,6 +217,58 @@ export default function LandingPage() {
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardTwo
plans={[
{
id: "basic",
badge: "Basic",
price: "$9.99/mo",
subtitle: "Perfect for small businesses",
buttons: [{ label: "Get Started", href: "/pricing/basic" }],
features: ["Up to 10 users", "Basic analytics", "Email support"]
},
{
id: "standard",
badge: "Standard",
price: "$19.99/mo",
subtitle: "Ideal for growing teams",
buttons: [{ label: "Get Started", href: "/pricing/standard" }],
features: ["Up to 50 users", "Advanced analytics", "Phone support"]
},
{
id: "premium",
badge: "Premium",
price: "$39.99/mo",
subtitle: "Best for large enterprises",
buttons: [{ label: "Get Started", href: "/pricing/premium" }],
features: ["Unlimited users", "Custom analytics", "24/7 support"]
}
]}
carouselMode="buttons"
animationType="fade"
title="Choose Your Plan"
description="Unlock the full potential of Crimson Seoul with our flexible pricing plans."
tag="Popular"
textboxLayout="left"
useInvertedBackground="none"
className="mb-10"
textBoxTitleClassName="text-4xl font-bold"
textBoxDescriptionClassName="text-lg text-gray-600"
badgeClassName="bg-blue-500 text-white"
priceClassName="text-3xl font-bold"
subtitleClassName="text-gray-500"
planButtonContainerClassName="mt-4"
planButtonClassName="bg-blue-500 text-white hover:bg-blue-600"
featuresClassName="mt-4"
featureItemClassName="text-gray-600"
planTitleClassName="text-2xl font-bold"
planSubtitleClassName="text-gray-500"
planPriceClassName="text-3xl font-bold"
planFeatureClassName="text-gray-600"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://img.b2bpic.net/free-photo/high-angle-dining-table-with-cutlery_23-2150312257.jpg"

View File

@@ -3,20 +3,20 @@
/* --vw is set by ThemeProvider */
/* --background: #fffafa;;
--card: #fff7f7;;
--foreground: #1a0000;;
--primary-cta: #e63946;;
--secondary-cta: #ffffff;;
--accent: #f5c4c7;;
--background-accent: #f09199;; */
--card: #ff0000;;
--foreground: "Inter", sans-serif;;
--primary-cta: #800080;;
--secondary-cta: "Inter", sans-serif;;
--accent: #90ee90;;
--background-accent: #20b2aa;; */
--background: #fffafa;;
--card: #fff7f7;;
--foreground: #1a0000;;
--primary-cta: #e63946;;
--secondary-cta: #ffffff;;
--accent: #f5c4c7;;
--background-accent: #f09199;;
--background: #ffffff;;
--card: #ff0000;;
--foreground: "Inter", sans-serif;;
--primary-cta: #800080;;
--secondary-cta: "Inter", sans-serif;;
--accent: #90ee90;;
--background-accent: #20b2aa;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -160,6 +160,11 @@ const FeatureCardTwentyFive = ({
</div>
))}
</div>
<div className="mt-5">
<a href="#dishes" className="bg-primary text-background px-4 py-2 rounded-theme transition-colors hover:bg-primary-hover">
Take a Look at Dishes
</a>
</div>
</div>
);
})}

View File

@@ -167,8 +167,8 @@ const PricingCardTwo = ({
textBoxTitleImageClassName = "",
textBoxDescriptionClassName = "",
badgeClassName = "",
priceClassName = "",
subtitleClassName = "",
priceClassName = "text-5xl font-medium",
subtitleClassName = "text-base",
planButtonContainerClassName = "",
planButtonClassName = "",
featuresClassName = "",