26 lines
915 B
Plaintext
26 lines
915 B
Plaintext
import BaseLayout from "../layouts/BaseLayout.astro";
|
|
import Header from "../components/Header.astro";
|
|
import Hero from "../components/Hero.astro";
|
|
import Services from "../components/Services.astro";
|
|
import Testimonials from "../components/Testimonials.astro";
|
|
import CTA from "../components/CTA.astro";
|
|
import Footer from "../components/Footer.astro";
|
|
|
|
const pageTitle = 'Tiber365 | Professional IT Services';
|
|
const pageDescription = 'Professional IT services for freelancers and small businesses. Microsoft 365 support, networking solutions, web hosting, and custom IT projects.';
|
|
const pageKeywords = 'IT services, Microsoft 365, networking, web hosting, small business, freelancers, Tiber365';
|
|
|
|
<BaseLayout
|
|
title={pageTitle}
|
|
description={pageDescription}
|
|
keywords={pageKeywords}
|
|
>
|
|
<Header />
|
|
<main>
|
|
<Hero />
|
|
<Services />
|
|
<Testimonials />
|
|
<CTA />
|
|
</main>
|
|
<Footer />
|
|
</BaseLayout> |