Refactor component names and clean up comment formatting

In this commit, the 'Clients' component has been renamed to 'ClientsSection' for improved clarity. Additionally, the formatting of comment blocks across multiple .astro files has been adjusted to keep the cade cleaner and more uniform across the project.
This commit is contained in:
Emil Gulamov 2024-02-12 03:50:17 +04:00
parent f5a6b4a78d
commit a24f4137a8
6 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@ const subTitle:string = "Experience the reliability chosen by industry giants.";
/* /*
In the above, the title and subTitle attributes are variables part of the ClientsSection component. In the above, the title and subTitle attributes are variables part of the ClientsSection component.
*/ */
--- ---
<div <div

View file

@ -13,7 +13,7 @@ const subTitle: string =
/* /*
In the above, the title and subTitle attributes are variables part of the FeaturesGeneral component. In the above, the title and subTitle attributes are variables part of the FeaturesGeneral component.
*/ */
--- ---
<div <div

View file

@ -35,7 +35,7 @@ const reviews:string = "12.8k";
/* /*
In the above, the title, subTitle, primaryBtn, primaryBtnURL, secondaryBtn, secondaryBtnURL, rating, starCount, reviews, and imageSource attributes are variables part of the HeroSection component. In the above, the title, subTitle, primaryBtn, primaryBtnURL, secondaryBtn, secondaryBtnURL, rating, starCount, reviews, and imageSource attributes are variables part of the HeroSection component.
*/ */
--- ---
<div <div

BIN
src/images/automated-tools.avif Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 192 KiB

BIN
src/images/construction-image.avif Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 612 KiB

After

Width:  |  Height:  |  Size: 288 KiB

View file

@ -2,7 +2,7 @@
import MainLayout from "../layouts/MainLayout.astro"; import MainLayout from "../layouts/MainLayout.astro";
import Navbar from "../components/Navbar.astro"; import Navbar from "../components/Navbar.astro";
import HeroSection from "../components/HeroSection.astro"; import HeroSection from "../components/HeroSection.astro";
import Clients from "../components/Clients.astro"; import ClientsSection from "../components/ClientsSection.astro";
import FeaturesGeneral from "../components/FeaturesGeneral.astro"; import FeaturesGeneral from "../components/FeaturesGeneral.astro";
import FeaturesNavs from "../components/FeaturesNavs.astro"; import FeaturesNavs from "../components/FeaturesNavs.astro";
import Testimonials from "../components/Testimonials.astro"; import Testimonials from "../components/Testimonials.astro";
@ -13,7 +13,7 @@ import FAQ from "../components/FAQ.astro";
<MainLayout> <MainLayout>
<Navbar /> <Navbar />
<HeroSection /> <HeroSection />
<Clients /> <ClientsSection />
<FeaturesGeneral /> <FeaturesGeneral />
<FeaturesNavs /> <FeaturesNavs />
<Testimonials /> <Testimonials />