diff --git a/src/app/page.tsx b/src/app/page.tsx index 23a5766..b1b0f25 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,12 +1,14 @@ "use client"; import Link from "next/link"; -import { Music } from "lucide-react"; +import { Music, Video, Calendar, Mail } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import HeroBillboard from "@/components/sections/hero/HeroBillboard"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; +import BlogCardOne from "@/components/sections/blog/BlogCardOne"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; @@ -26,7 +28,7 @@ export default function HomePage() { borderRadius="rounded" contentWidth="mediumLarge" sizing="large" - background="circleGradient" + background="sparkles-gradient" cardStyle="gradient-mesh" primaryButtonStyle="flat" secondaryButtonStyle="layered" @@ -45,18 +47,14 @@ export default function HomePage() { +
+ +
+ +
+ +
+
diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..0653410 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,30 @@ -"use client"; +import React from 'react'; -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; - -interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; +export interface SvgTextLogoProps { + text: string; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ text, className = '' }) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file