diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 2759bbd..8d7f916 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -7,7 +7,7 @@ import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import FaqBase from "@/components/sections/faq/FaqBase";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import Link from "next/link";
-import { DollarSign, HelpCircle } from "lucide-react";
+import { DollarSign, HelpCircle, Zap } from "lucide-react";
export default function ContactPage() {
return (
@@ -17,7 +17,7 @@ export default function ContactPage() {
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="large"
- background="blurBottom"
+ background="circleGradient"
cardStyle="gradient-radial"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
@@ -34,9 +34,7 @@ export default function ContactPage() {
{ name: "About", id: "about" },
]}
button={{
- text: "Get Started",
- href: "/contact",
- }}
+ text: "Get Started", href: "/contact"}}
animateOnLoad={true}
/>
@@ -46,20 +44,14 @@ export default function ContactPage() {
@@ -69,72 +61,31 @@ export default function ContactPage() {
@@ -52,7 +50,7 @@ export default function HomePage() {
@@ -93,19 +85,11 @@ export default function HomePage() {
@@ -381,45 +241,21 @@ export default function HomePage() {
(function SvgTextLogo({
- logoText,
- adjustHeightFactor,
- verticalAlign = "top",
- className = "",
-}) {
- const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor);
-
+export function SvgTextLogo({ text, className = '' }: SvgTextLogoProps) {
return (
);
-});
-
-SvgTextLogo.displayName = "SvgTextLogo";
+}
export default SvgTextLogo;