9 Commits

Author SHA1 Message Date
f4f6a66276 Update src/app/page.tsx 2026-05-01 07:03:18 +00:00
e8ee1be1fb Merge version_2 into main
Merge version_2 into main
2026-05-01 07:02:38 +00:00
ae4ab90e70 Update theme fonts 2026-05-01 07:02:35 +00:00
7dc90a420c Update theme fonts 2026-05-01 07:02:34 +00:00
c2c43229d1 Merge version_2 into main
Merge version_2 into main
2026-05-01 07:01:53 +00:00
a2aaa6ae9d Update theme colors 2026-05-01 07:01:50 +00:00
3c728e72f3 Merge version_1 into main
Merge version_1 into main
2026-05-01 06:59:46 +00:00
812ca5be01 Merge version_1 into main
Merge version_1 into main
2026-05-01 06:59:22 +00:00
dadc7464a6 Merge version_1 into main
Merge version_1 into main
2026-05-01 06:58:58 +00:00
4 changed files with 19 additions and 41 deletions

View File

@@ -8,6 +8,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Figtree } from "next/font/google";
@@ -21,12 +22,9 @@ export const metadata: Metadata = {
},
};
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
@@ -38,7 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body className={`${figtree.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -6,7 +6,7 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import SplitAbout from '@/components/sections/about/SplitAbout';
@@ -41,33 +41,13 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
<HeroLogoBillboard
background={{ variant: "plain" }}
title="Dare to Dream Events"
logoText="Dare to Dream Events"
description="Crafting Extraordinary Moments in Cape Town."
testimonials={[
{ name: "Sarah & Mark", handle: "@cptweddings", testimonial: "Everything was perfect beyond our expectations. Pure magic.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-brunette-woman-are-looking-diagramme-being-light-room_8353-10336.jpg?_wi=1", imageAlt: "luxury event planning Cape Town" },
{ name: "Jane Doe", handle: "@luxuryevents", testimonial: "The attention to detail was absolutely stunning.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/charming-brunette-black-dress-is-standing-by-her-man-who-sits-table-luxury-restaurant_613910-18639.jpg?_wi=1", imageAlt: "luxury event planning Cape Town" },
{ name: "Michael B.", handle: "@mikes_events", testimonial: "An incredible experience from start to finish.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-blonde-caucasian-lady-pajamas-sits-sofa-decorated-festive-room-christmas-preparation-concept_197531-31682.jpg?_wi=1", imageAlt: "luxury event planning Cape Town" },
{ name: "Emma W.", handle: "@em_celebrations", testimonial: "Truly a premium service, highly recommended.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/lady-healthy-human-romantic-girl_1304-952.jpg?_wi=1", imageAlt: "luxury event planning Cape Town" },
{ name: "David R.", handle: "@dave_cpt", testimonial: "They turned our vision into reality effortlessly.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-couple-celebrating-birthday-together_23-2150598994.jpg?_wi=1", imageAlt: "luxury event planning Cape Town" },
]}
buttons={[{ text: "Get Your Free Quote", href: "#contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/handsome-man-brunette-woman-are-looking-diagramme-being-light-room_8353-10336.jpg?_wi=2"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/two-senior-female-friends-luxurious-restaurant_23-2150517456.jpg", alt: "Client One" },
{ src: "http://img.b2bpic.net/free-photo/happy-friends-having-new-year-party-outdoors-daylight_23-2149144037.jpg", alt: "Client Two" },
{ src: "http://img.b2bpic.net/free-photo/attractive-restaurant-manager-is-rating-waitress-work_8353-10567.jpg", alt: "Client Three" },
{ src: "http://img.b2bpic.net/free-photo/wedding-reception-room-with-decorated-table-setting-sea-view-through-window_637285-984.jpg", alt: "Client Four" },
{ src: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-male-model-man-dressed-elegant-suit-black-studio-lights-background_158538-9607.jpg", alt: "Client Five" },
]}
marqueeItems={[
{ type: "text", text: "WEDDINGS" },
{ type: "text", text: "CORPORATE" },
{ type: "text", text: "PARTIES" },
{ type: "text", text: "PICNICS" },
{ type: "text", text: "CELEBRATIONS" },
]}
mediaAnimation="slide-up"
/>
</div>
@@ -178,4 +158,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-figtree), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-figtree), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f9f9f9;
--background: #f5f4f0;
--card: #ffffff;
--foreground: #1a1a1a;
--primary-cta: #d4afb9;
--primary-cta-text: #ffffff;
--secondary-cta: #ffffff;
--primary-cta: #2c2c2c;
--primary-cta-text: #f5f4f0;
--secondary-cta: #f5f4f0;
--secondary-cta-text: #1a1a1a;
--accent: #f7d3d8;
--background-accent: #e5e5e5;
--accent: #8a8a8a;
--background-accent: #e8e6e1;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);