2 Commits

2 changed files with 6 additions and 2 deletions

View File

@@ -10,6 +10,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import { Heart, Zap, Award, Globe } from "lucide-react"; import { Heart, Zap, Award, Globe } from "lucide-react";
export default function VitaliyPage() { export default function VitaliyPage() {
@@ -41,6 +42,10 @@ export default function VitaliyPage() {
/> />
</div> </div>
<div id="pricing" data-section="pricing">
<PricingCardTwo />
</div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroLogoBillboard
logoText="VITALIY" logoText="VITALIY"

View File

@@ -7,7 +7,6 @@ import HeroBackgrounds, { type HeroBackgroundVariantProps } from "@/components/b
import { cls } from "@/lib/utils"; import { cls } from "@/lib/utils";
import { Plus } from "lucide-react"; import { Plus } from "lucide-react";
import { useTheme } from "@/providers/themeProvider/ThemeProvider"; import { useTheme } from "@/providers/themeProvider/ThemeProvider";
import heroLogoSvg from "@/assets/images/hero-logo.svg";
type HeroLogoBillboardBackgroundProps = Extract< type HeroLogoBillboardBackgroundProps = Extract<
HeroBackgroundVariantProps, HeroBackgroundVariantProps,
@@ -136,7 +135,7 @@ const HeroLogoBillboard = ({
)} )}
</div> </div>
<div className="w-full flex justify-center items-center mt-10"> <div className="w-full flex justify-center items-center mt-10">
<img src={heroLogoSvg} alt="Hero Logo" className="w-64 h-auto" /> <div className="w-64 h-auto bg-gray-300"></div>
</div> </div>
</section> </section>
); );