Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0f84616d2d | |||
| 9efac29bb7 | |||
| e0760e8bd0 | |||
| 6edd5ea507 | |||
| c168e80ffe |
@@ -9,6 +9,7 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -25,7 +26,7 @@ export default function LandingPage() {
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "#hero" },
|
||||
{ name: "About", id: "#about" },
|
||||
@@ -34,8 +35,6 @@ export default function LandingPage() {
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
brandName="Sweet Delights"
|
||||
bottomLeftText="Baked with Love"
|
||||
bottomRightText="hello@sweetdelights.com"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
|
||||
@@ -3,22 +3,22 @@
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #0c1325;;
|
||||
--primary-cta: #0798ff;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #93c7ff;;
|
||||
--background-accent: #a8cde8;; */
|
||||
--card: #faf9fb;;
|
||||
--foreground: #2d3e52;;
|
||||
--primary-cta: #6b9fd9;;
|
||||
--secondary-cta: #f5f3f7;;
|
||||
--accent: #b8d9f0;;
|
||||
--background-accent: #d4e4f0;; */
|
||||
|
||||
--background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #0c1325;;
|
||||
--primary-cta: #0798ff;;
|
||||
--background: #faf8fb;;
|
||||
--card: #faf9fb;;
|
||||
--foreground: #2d3e52;;
|
||||
--primary-cta: #6b9fd9;;
|
||||
--primary-cta-text: #f7f6f7;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta: #f5f3f7;;
|
||||
--secondary-cta-text: #0c1325;;
|
||||
--accent: #93c7ff;;
|
||||
--background-accent: #a8cde8;;
|
||||
--accent: #b8d9f0;;
|
||||
--background-accent: #d4e4f0;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
@@ -4,7 +4,7 @@ import { memo } from "react";
|
||||
import CardStack from "@/components/cardStack/CardStack";
|
||||
import MediaContent from "@/components/shared/MediaContent";
|
||||
import { cls } from "@/lib/utils";
|
||||
import { Star } from "lucide-react";
|
||||
import { Star, Heart } from "lucide-react";
|
||||
import type { LucideIcon } from "lucide-react";
|
||||
import type { ButtonConfig, ButtonAnimationType, CardAnimationTypeWith3D, GridVariant, TitleSegment, TextboxLayout, InvertedBackground } from "@/components/cardStack/types";
|
||||
|
||||
@@ -164,7 +164,22 @@ const TestimonialCardOne = ({
|
||||
textBoxButtonTextClassName = "",
|
||||
}: TestimonialCardOneProps) => {
|
||||
return (
|
||||
<CardStack
|
||||
<div className="relative">
|
||||
{/* Decorative hearts around section */}
|
||||
<div className="absolute -top-8 left-1/4 text-red-500 opacity-60 animate-pulse">
|
||||
<Heart size={24} fill="currentColor" />
|
||||
</div>
|
||||
<div className="absolute -top-6 right-1/4 text-red-500 opacity-50 animate-pulse" style={{ animationDelay: "0.5s" }}>
|
||||
<Heart size={20} fill="currentColor" />
|
||||
</div>
|
||||
<div className="absolute -bottom-8 left-1/3 text-red-500 opacity-60 animate-pulse" style={{ animationDelay: "1s" }}>
|
||||
<Heart size={22} fill="currentColor" />
|
||||
</div>
|
||||
<div className="absolute -bottom-6 right-1/3 text-red-500 opacity-50 animate-pulse" style={{ animationDelay: "0.3s" }}>
|
||||
<Heart size={18} fill="currentColor" />
|
||||
</div>
|
||||
|
||||
<CardStack
|
||||
mode={carouselMode}
|
||||
gridVariant={gridVariant}
|
||||
uniformGridCustomHeightClasses={uniformGridCustomHeightClasses}
|
||||
@@ -210,7 +225,8 @@ const TestimonialCardOne = ({
|
||||
companyClassName={companyClassName}
|
||||
/>
|
||||
))}
|
||||
</CardStack>
|
||||
</CardStack>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user