Refactor component names and add newline in SecondaryCTA

Refactored the names of the Testimonials and Pricing components to TestimonialsSection and PricingSection for better understanding. Also fixed the lack of newline at the end of file in SecondaryCTA component.
This commit is contained in:
Emil Gulamov 2024-02-12 04:48:22 +04:00
parent 4c434628e1
commit 41deaa4fbf
3 changed files with 5 additions and 5 deletions

View file

@ -12,4 +12,4 @@ interface Props {
href={url}
>
{title}
</a>
</a>

View file

@ -5,8 +5,8 @@ import HeroSection from "../components/HeroSection.astro";
import ClientsSection from "../components/ClientsSection.astro";
import FeaturesGeneral from "../components/FeaturesGeneral.astro";
import FeaturesNavs from "../components/FeaturesNavs.astro";
import Testimonials from "../components/Testimonials.astro";
import Pricing from "../components/Pricing.astro";
import TestimonialsSection from "../components/TestimonialsSection.astro";
import PricingSection from "../components/PricingSection.astro";
import FAQ from "../components/FAQ.astro";
---
@ -16,7 +16,7 @@ import FAQ from "../components/FAQ.astro";
<ClientsSection />
<FeaturesGeneral />
<FeaturesNavs />
<Testimonials />
<Pricing />
<TestimonialsSection />
<PricingSection />
<FAQ />
</MainLayout>