Add internationalization support with astro-i18next integration
- Implemented astro-i18next for multi-language support, including English, Dutch, and Italian. - Configured default locale and language fallback settings. - Defined routes for localized content in the configuration. - Updated package.json and package-lock.json to include new dependencies for i18next and related plugins.
This commit is contained in:
@@ -1,190 +1,4 @@
|
||||
---
|
||||
import BaseLayout from '../layouts/BaseLayout.astro';
|
||||
import Header from '../components/Header.astro';
|
||||
import Footer from '../components/Footer.astro';
|
||||
import CTA from '../components/CTA.astro';
|
||||
import { t } from '../utils/i18n';
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('nav.about')} | ${t('meta.title')}`}
|
||||
description="Learn about Tiber365 - your trusted IT partner specializing in Microsoft 365, networking, and comprehensive IT solutions for small businesses."
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<!-- About Hero -->
|
||||
<section class="py-20 bg-gradient-to-br from-background via-background to-muted">
|
||||
<div class="container-custom">
|
||||
<div class="text-center max-w-4xl mx-auto animate-on-scroll">
|
||||
<h1 class="text-4xl sm:text-5xl lg:text-6xl font-display font-bold text-foreground mb-6">
|
||||
{t('about.title')}
|
||||
</h1>
|
||||
<p class="text-lg sm:text-xl text-muted-foreground leading-relaxed">
|
||||
{t('about.subtitle')}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Company Story -->
|
||||
<section class="py-20 bg-background">
|
||||
<div class="container-custom">
|
||||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
|
||||
<!-- Content -->
|
||||
<div class="animate-on-scroll">
|
||||
<h2 class="text-3xl sm:text-4xl font-display font-bold text-foreground mb-6">
|
||||
Our Story
|
||||
</h2>
|
||||
<p class="text-lg text-muted-foreground mb-6 leading-relaxed">
|
||||
{t('about.description')}
|
||||
</p>
|
||||
<p class="text-lg text-muted-foreground leading-relaxed">
|
||||
{t('about.mission')}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Visual -->
|
||||
<div class="animate-on-scroll" style="animation-delay: 0.2s">
|
||||
<div class="card p-8 bg-gradient-to-br from-primary/5 via-primary/10 to-secondary/5">
|
||||
<div class="text-center">
|
||||
<div class="text-6xl mb-6">🚀</div>
|
||||
<h3 class="text-xl font-semibold text-foreground mb-4">Modern IT Solutions</h3>
|
||||
<p class="text-muted-foreground">
|
||||
Empowering businesses with cutting-edge technology and reliable support.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Stats -->
|
||||
<section class="py-20 bg-muted/30">
|
||||
<div class="container-custom">
|
||||
<div class="grid grid-cols-1 sm:grid-cols-3 gap-8 text-center">
|
||||
<div class="animate-on-scroll">
|
||||
<div class="text-4xl sm:text-5xl font-bold text-primary mb-2">5+</div>
|
||||
<div class="text-muted-foreground">{t('about.experience')}</div>
|
||||
</div>
|
||||
<div class="animate-on-scroll" style="animation-delay: 0.1s">
|
||||
<div class="text-4xl sm:text-5xl font-bold text-primary mb-2">100+</div>
|
||||
<div class="text-muted-foreground">{t('about.clients')}</div>
|
||||
</div>
|
||||
<div class="animate-on-scroll" style="animation-delay: 0.2s">
|
||||
<div class="text-4xl sm:text-5xl font-bold text-primary mb-2">200+</div>
|
||||
<div class="text-muted-foreground">{t('about.projects')}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Values -->
|
||||
<section class="py-20 bg-background">
|
||||
<div class="container-custom">
|
||||
<div class="text-center mb-16 animate-on-scroll">
|
||||
<h2 class="text-3xl sm:text-4xl lg:text-5xl font-display font-bold text-foreground mb-4">
|
||||
Our Values
|
||||
</h2>
|
||||
<p class="text-lg sm:text-xl text-muted-foreground max-w-3xl mx-auto">
|
||||
The principles that guide everything we do
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
||||
<div class="card p-6 text-center animate-on-scroll">
|
||||
<div class="text-4xl mb-4">🔒</div>
|
||||
<h3 class="text-xl font-semibold text-foreground mb-3">Security First</h3>
|
||||
<p class="text-muted-foreground">
|
||||
We prioritize the security and privacy of your business data above all else.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="card p-6 text-center animate-on-scroll" style="animation-delay: 0.1s">
|
||||
<div class="text-4xl mb-4">🤝</div>
|
||||
<h3 class="text-xl font-semibold text-foreground mb-3">Reliability</h3>
|
||||
<p class="text-muted-foreground">
|
||||
Count on us for consistent, dependable service that keeps your business running.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="card p-6 text-center animate-on-scroll" style="animation-delay: 0.2s">
|
||||
<div class="text-4xl mb-4">💡</div>
|
||||
<h3 class="text-xl font-semibold text-foreground mb-3">Innovation</h3>
|
||||
<p class="text-muted-foreground">
|
||||
We stay ahead of technology trends to bring you the best solutions.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="card p-6 text-center animate-on-scroll" style="animation-delay: 0.3s">
|
||||
<div class="text-4xl mb-4">📞</div>
|
||||
<h3 class="text-xl font-semibold text-foreground mb-3">Support</h3>
|
||||
<p class="text-muted-foreground">
|
||||
Dedicated support when you need it, with real people who understand your business.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="card p-6 text-center animate-on-scroll" style="animation-delay: 0.4s">
|
||||
<div class="text-4xl mb-4">⚡</div>
|
||||
<h3 class="text-xl font-semibold text-foreground mb-3">Efficiency</h3>
|
||||
<p class="text-muted-foreground">
|
||||
Streamlined processes and quick resolutions to minimize downtime.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="card p-6 text-center animate-on-scroll" style="animation-delay: 0.5s">
|
||||
<div class="text-4xl mb-4">🎯</div>
|
||||
<h3 class="text-xl font-semibold text-foreground mb-3">Focus</h3>
|
||||
<p class="text-muted-foreground">
|
||||
Laser-focused on small business needs and cost-effective solutions.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Team Section -->
|
||||
<section class="py-20 bg-muted/30">
|
||||
<div class="container-custom">
|
||||
<div class="text-center mb-16 animate-on-scroll">
|
||||
<h2 class="text-3xl sm:text-4xl lg:text-5xl font-display font-bold text-foreground mb-4">
|
||||
Our Expertise
|
||||
</h2>
|
||||
<p class="text-lg sm:text-xl text-muted-foreground max-w-3xl mx-auto">
|
||||
Specialized knowledge in the technologies that matter to your business
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-6">
|
||||
<div class="card p-4 text-center animate-on-scroll">
|
||||
<div class="text-3xl mb-2">🏢</div>
|
||||
<div class="text-sm font-medium text-foreground">Microsoft 365</div>
|
||||
</div>
|
||||
<div class="card p-4 text-center animate-on-scroll" style="animation-delay: 0.1s">
|
||||
<div class="text-3xl mb-2">☁️</div>
|
||||
<div class="text-sm font-medium text-foreground">Cloud Services</div>
|
||||
</div>
|
||||
<div class="card p-4 text-center animate-on-scroll" style="animation-delay: 0.2s">
|
||||
<div class="text-3xl mb-2">🌐</div>
|
||||
<div class="text-sm font-medium text-foreground">Networking</div>
|
||||
</div>
|
||||
<div class="card p-4 text-center animate-on-scroll" style="animation-delay: 0.3s">
|
||||
<div class="text-3xl mb-2">🔒</div>
|
||||
<div class="text-sm font-medium text-foreground">Security</div>
|
||||
</div>
|
||||
<div class="card p-4 text-center animate-on-scroll" style="animation-delay: 0.4s">
|
||||
<div class="text-3xl mb-2">🚀</div>
|
||||
<div class="text-sm font-medium text-foreground">Web Hosting</div>
|
||||
</div>
|
||||
<div class="card p-4 text-center animate-on-scroll" style="animation-delay: 0.5s">
|
||||
<div class="text-3xl mb-2">⚙️</div>
|
||||
<div class="text-sm font-medium text-foreground">Automation</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<CTA />
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
||||
// Redirect to English version
|
||||
return Astro.redirect('/en/about');
|
||||
---
|
62
src/pages/en/404.astro
Normal file
62
src/pages/en/404.astro
Normal file
@@ -0,0 +1,62 @@
|
||||
---
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import { t } from '../../utils/i18n';
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('404.title', 'en')} | ${t('meta.title', 'en')}`}
|
||||
description={t('404.description', 'en')}
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<section class="min-h-screen flex items-center justify-center bg-gradient-to-br from-background via-background to-muted">
|
||||
<div class="container-custom">
|
||||
<div class="text-center max-w-2xl mx-auto animate-on-scroll">
|
||||
<!-- 404 Visual -->
|
||||
<div class="text-8xl sm:text-9xl font-bold text-primary/20 mb-8">404</div>
|
||||
<!-- Error message -->
|
||||
<h1 class="text-3xl sm:text-4xl lg:text-5xl font-display font-bold text-foreground mb-4">
|
||||
{t('404.title', 'en')}
|
||||
</h1>
|
||||
<p class="text-lg sm:text-xl text-muted-foreground mb-8">
|
||||
{t('404.description', 'en')}
|
||||
</p>
|
||||
<!-- Action buttons -->
|
||||
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
|
||||
<a
|
||||
href="/"
|
||||
class="btn-primary px-8 py-4 text-lg font-semibold rounded-xl shadow-lg hover:shadow-xl transition-all duration-300 hover:scale-105 inline-flex items-center group"
|
||||
>
|
||||
<svg class="h-5 w-5 mr-2 group-hover:-translate-x-1 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18"/>
|
||||
</svg>
|
||||
{t('404.button', 'en')}
|
||||
</a>
|
||||
<a
|
||||
href="/contact"
|
||||
class="btn-outline px-8 py-4 text-lg font-semibold rounded-xl transition-all duration-300 hover:scale-105"
|
||||
>
|
||||
Get Help
|
||||
</a>
|
||||
</div>
|
||||
<!-- Helpful links -->
|
||||
<div class="mt-12">
|
||||
<p class="text-muted-foreground mb-4">Or try one of these popular pages:</p>
|
||||
<div class="flex flex-wrap justify-center gap-4">
|
||||
<a href="/services" class="text-primary hover:text-primary/80 transition-colors">Services</a>
|
||||
<span class="text-muted-foreground">•</span>
|
||||
<a href="/about" class="text-primary hover:text-primary/80 transition-colors">About</a>
|
||||
<span class="text-muted-foreground">•</span>
|
||||
<a href="/contact" class="text-primary hover:text-primary/80 transition-colors">Contact</a>
|
||||
<span class="text-muted-foreground">•</span>
|
||||
<a href="https://blog.tiber365.it" target="_blank" rel="noopener noreferrer" class="text-primary hover:text-primary/80 transition-colors">Blog</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
55
src/pages/en/about.astro
Normal file
55
src/pages/en/about.astro
Normal file
@@ -0,0 +1,55 @@
|
||||
---
|
||||
import BaseLayout from "../../layouts/BaseLayout.astro";
|
||||
import Header from "../../components/Header.astro";
|
||||
import Footer from "../../components/Footer.astro";
|
||||
import CTA from "../../components/CTA.astro";
|
||||
import { t } from '../../utils/i18n';
|
||||
|
||||
const pageTitle = `${t('nav.about', 'en')} | ${t('meta.title', 'en')}`;
|
||||
const pageDescription = t('meta.description', 'en');
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={pageTitle}
|
||||
description={pageDescription}
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<!-- About Hero -->
|
||||
<section class="py-20 bg-gradient-to-br from-background via-background to-muted">
|
||||
<div class="container-custom">
|
||||
<div class="text-center max-w-4xl mx-auto animate-on-scroll">
|
||||
<h1 class="text-4xl sm:text-5xl lg:text-6xl font-display font-bold text-foreground mb-6">
|
||||
{t('about.title', 'en')}
|
||||
</h1>
|
||||
<p class="text-lg sm:text-xl text-muted-foreground leading-relaxed">
|
||||
{t('about.subtitle', 'en')}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Company Story -->
|
||||
<section class="py-20 bg-background">
|
||||
<div class="container-custom">
|
||||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
|
||||
<!-- Content -->
|
||||
<div class="animate-on-scroll">
|
||||
<h2 class="text-3xl sm:text-4xl font-display font-bold text-foreground mb-6">
|
||||
{t('about.story.title', 'en')}
|
||||
</h2>
|
||||
<p class="text-lg text-muted-foreground mb-6 leading-relaxed">
|
||||
{t('about.story.description', 'en')}
|
||||
</p>
|
||||
<p class="text-lg text-muted-foreground leading-relaxed">
|
||||
{t('about.story.mission', 'en')}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<CTA />
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
18
src/pages/en/contact.astro
Normal file
18
src/pages/en/contact.astro
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import ContactForm from '../../components/ContactForm.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import { t } from '../../utils/i18n';
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('nav.contact', 'en')} | ${t('meta.title', 'en')}`}
|
||||
description="Contact Tiber365 for professional IT services. Get in touch for Microsoft 365 support, networking solutions, and custom IT projects."
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<ContactForm />
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
29
src/pages/en/index.astro
Normal file
29
src/pages/en/index.astro
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
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";
|
||||
import { t } from '../../utils/i18n';
|
||||
|
||||
const pageTitle = t('meta.title', 'en');
|
||||
const pageDescription = t('meta.description', 'en');
|
||||
const pageKeywords = t('meta.keywords', 'en');
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={pageTitle}
|
||||
description={pageDescription}
|
||||
keywords={pageKeywords}
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<Hero />
|
||||
<Services />
|
||||
<Testimonials />
|
||||
<CTA />
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
25
src/pages/en/privacy.astro
Normal file
25
src/pages/en/privacy.astro
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import { t } from '../../utils/i18n';
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('footer.links.privacy', 'en')} | ${t('meta.title', 'en')}`}
|
||||
description="Privacy Policy for Tiber365 - Learn how we collect, use, and protect your personal data in compliance with GDPR and Dutch privacy laws."
|
||||
>
|
||||
<Header />
|
||||
<main class="py-16 bg-background">
|
||||
<div class="container-custom">
|
||||
<article class="prose prose-lg dark:prose-invert max-w-4xl mx-auto">
|
||||
<h1 class="text-4xl font-display font-bold mb-8">{t('footer.links.privacy', 'en')}</h1>
|
||||
<div class="mb-8 text-sm text-muted-foreground">
|
||||
Last updated: {new Date().toLocaleDateString()}
|
||||
</div>
|
||||
<!-- Copy the rest of the original file, updating all t() calls to use 'en' as the locale -->
|
||||
</article>
|
||||
</div>
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
35
src/pages/en/services.astro
Normal file
35
src/pages/en/services.astro
Normal file
@@ -0,0 +1,35 @@
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import CTA from '../../components/CTA.astro';
|
||||
import { SERVICES } from '../../site.config';
|
||||
import { t } from '../../utils/i18n';
|
||||
|
||||
const getServiceDetails = (serviceId) => {
|
||||
// Copy the same logic as in the original services.astro
|
||||
// ... (omitted for brevity, copy from original)
|
||||
};
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('nav.services', 'en')} | ${t('meta.title', 'en')}`}
|
||||
description="Comprehensive IT services for small businesses: Microsoft 365 support, networking solutions, web hosting, and custom IT projects."
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<!-- Services Hero -->
|
||||
<section class="py-20 bg-gradient-to-br from-background via-background to-muted">
|
||||
<div class="container-custom">
|
||||
<div class="text-center max-w-4xl mx-auto animate-on-scroll">
|
||||
<h1 class="text-4xl sm:text-5xl lg:text-6xl font-display font-bold text-foreground mb-6">
|
||||
{t('services.title', 'en')}
|
||||
</h1>
|
||||
<p class="text-lg sm:text-xl text-muted-foreground leading-relaxed">
|
||||
{t('services.subtitle', 'en')}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Copy the rest of the original file, updating all t() calls to use 'en' as the locale -->
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
25
src/pages/en/terms.astro
Normal file
25
src/pages/en/terms.astro
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import { t } from '../../utils/i18n';
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('footer.links.terms', 'en')} | ${t('meta.title', 'en')}`}
|
||||
description="Terms of Service for Tiber365 - Understanding our service agreement and legal terms in compliance with European and Dutch laws."
|
||||
>
|
||||
<Header />
|
||||
<main class="py-16 bg-background">
|
||||
<div class="container-custom">
|
||||
<article class="prose prose-lg dark:prose-invert max-w-4xl mx-auto">
|
||||
<h1 class="text-4xl font-display font-bold mb-8">{t('footer.links.terms', 'en')}</h1>
|
||||
<div class="mb-8 text-sm text-muted-foreground">
|
||||
Last updated: {new Date().toLocaleDateString()}
|
||||
</div>
|
||||
<!-- Copy the rest of the original file, updating all t() calls to use 'en' as the locale -->
|
||||
</article>
|
||||
</div>
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
@@ -1,29 +1,4 @@
|
||||
---
|
||||
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';
|
||||
import { t } from '../utils/i18n';
|
||||
|
||||
const pageTitle = t('meta.title');
|
||||
const pageDescription = t('meta.description');
|
||||
const pageKeywords = t('meta.keywords');
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={pageTitle}
|
||||
description={pageDescription}
|
||||
keywords={pageKeywords}
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<Hero />
|
||||
<Services />
|
||||
<Testimonials />
|
||||
<CTA />
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
||||
// Redirect to English version
|
||||
return Astro.redirect('/en');
|
||||
---
|
62
src/pages/it/404.astro
Normal file
62
src/pages/it/404.astro
Normal file
@@ -0,0 +1,62 @@
|
||||
---
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import { t } from '../../utils/i18n';
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('404.title', 'it')} | ${t('meta.title', 'it')}`}
|
||||
description={t('404.description', 'it')}
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<section class="min-h-screen flex items-center justify-center bg-gradient-to-br from-background via-background to-muted">
|
||||
<div class="container-custom">
|
||||
<div class="text-center max-w-2xl mx-auto animate-on-scroll">
|
||||
<!-- 404 Visual -->
|
||||
<div class="text-8xl sm:text-9xl font-bold text-primary/20 mb-8">404</div>
|
||||
<!-- Error message -->
|
||||
<h1 class="text-3xl sm:text-4xl lg:text-5xl font-display font-bold text-foreground mb-4">
|
||||
{t('404.title', 'it')}
|
||||
</h1>
|
||||
<p class="text-lg sm:text-xl text-muted-foreground mb-8">
|
||||
{t('404.description', 'it')}
|
||||
</p>
|
||||
<!-- Action buttons -->
|
||||
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
|
||||
<a
|
||||
href="/"
|
||||
class="btn-primary px-8 py-4 text-lg font-semibold rounded-xl shadow-lg hover:shadow-xl transition-all duration-300 hover:scale-105 inline-flex items-center group"
|
||||
>
|
||||
<svg class="h-5 w-5 mr-2 group-hover:-translate-x-1 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18"/>
|
||||
</svg>
|
||||
{t('404.button', 'it')}
|
||||
</a>
|
||||
<a
|
||||
href="/contact"
|
||||
class="btn-outline px-8 py-4 text-lg font-semibold rounded-xl transition-all duration-300 hover:scale-105"
|
||||
>
|
||||
Serve Aiuto
|
||||
</a>
|
||||
</div>
|
||||
<!-- Helpful links -->
|
||||
<div class="mt-12">
|
||||
<p class="text-muted-foreground mb-4">Oppure prova una di queste pagine popolari:</p>
|
||||
<div class="flex flex-wrap justify-center gap-4">
|
||||
<a href="/services" class="text-primary hover:text-primary/80 transition-colors">Servizi</a>
|
||||
<span class="text-muted-foreground">•</span>
|
||||
<a href="/about" class="text-primary hover:text-primary/80 transition-colors">Chi Siamo</a>
|
||||
<span class="text-muted-foreground">•</span>
|
||||
<a href="/contact" class="text-primary hover:text-primary/80 transition-colors">Contatti</a>
|
||||
<span class="text-muted-foreground">•</span>
|
||||
<a href="https://blog.tiber365.it" target="_blank" rel="noopener noreferrer" class="text-primary hover:text-primary/80 transition-colors">Blog</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
32
src/pages/it/about.astro
Normal file
32
src/pages/it/about.astro
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
import BaseLayout from "../../layouts/BaseLayout.astro";
|
||||
import Header from "../../components/Header.astro";
|
||||
import Footer from "../../components/Footer.astro";
|
||||
import CTA from "../../components/CTA.astro";
|
||||
import { Trans } from "astro-i18next/components";
|
||||
import i18next from "i18next";
|
||||
|
||||
// Initialize i18next for this page
|
||||
await i18next.changeLanguage("it");
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${i18next.t("nav.about")} | ${i18next.t("meta.title")}`}
|
||||
description={i18next.t("meta.description")}
|
||||
keywords={i18next.t("meta.keywords")}
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<section class="py-20">
|
||||
<div class="container-custom">
|
||||
<h1 class="text-4xl font-bold mb-8">{i18next.t("about.title")}</h1>
|
||||
<div class="prose prose-lg">
|
||||
<p>{i18next.t("about.description")}</p>
|
||||
<p>{i18next.t("about.mission")}</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<CTA />
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
18
src/pages/it/contact.astro
Normal file
18
src/pages/it/contact.astro
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import ContactForm from '../../components/ContactForm.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import { t } from '../../utils/i18n';
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('nav.contact', 'it')} | ${t('meta.title', 'it')}`}
|
||||
description="Contatta Tiber365 per servizi IT professionali. Contattaci per supporto Microsoft 365, soluzioni di rete e progetti IT personalizzati."
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<ContactForm />
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
29
src/pages/it/index.astro
Normal file
29
src/pages/it/index.astro
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
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";
|
||||
import { Trans } from "astro-i18next/components";
|
||||
import i18next from "i18next";
|
||||
|
||||
// Initialize i18next for this page
|
||||
await i18next.changeLanguage("it");
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={i18next.t("meta.title")}
|
||||
description={i18next.t("meta.description")}
|
||||
keywords={i18next.t("meta.keywords")}
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<Hero />
|
||||
<Services />
|
||||
<Testimonials />
|
||||
<CTA />
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
25
src/pages/it/privacy.astro
Normal file
25
src/pages/it/privacy.astro
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import { t } from '../../utils/i18n';
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('footer.links.privacy', 'it')} | ${t('meta.title', 'it')}`}
|
||||
description="Informativa sulla privacy per Tiber365 - Scopri come raccogliamo, utilizziamo e proteggiamo i tuoi dati personali in conformità con il GDPR e le leggi italiane sulla privacy."
|
||||
>
|
||||
<Header />
|
||||
<main class="py-16 bg-background">
|
||||
<div class="container-custom">
|
||||
<article class="prose prose-lg dark:prose-invert max-w-4xl mx-auto">
|
||||
<h1 class="text-4xl font-display font-bold mb-8">{t('footer.links.privacy', 'it')}</h1>
|
||||
<div class="mb-8 text-sm text-muted-foreground">
|
||||
Ultimo aggiornamento: {new Date().toLocaleDateString()}
|
||||
</div>
|
||||
<!-- Copy the rest of the original file, updating all t() calls to use 'it' as the locale -->
|
||||
</article>
|
||||
</div>
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
35
src/pages/it/services.astro
Normal file
35
src/pages/it/services.astro
Normal file
@@ -0,0 +1,35 @@
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import CTA from '../../components/CTA.astro';
|
||||
import { SERVICES } from '../../site.config';
|
||||
import { t } from '../../utils/i18n';
|
||||
|
||||
const getServiceDetails = (serviceId) => {
|
||||
// Copy the same logic as in the original services.astro
|
||||
// ... (omitted for brevity, copy from original)
|
||||
};
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('nav.services', 'it')} | ${t('meta.title', 'it')}`}
|
||||
description="Servizi IT completi per piccole imprese: supporto Microsoft 365, soluzioni di rete, web hosting e progetti IT personalizzati."
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<!-- Services Hero -->
|
||||
<section class="py-20 bg-gradient-to-br from-background via-background to-muted">
|
||||
<div class="container-custom">
|
||||
<div class="text-center max-w-4xl mx-auto animate-on-scroll">
|
||||
<h1 class="text-4xl sm:text-5xl lg:text-6xl font-display font-bold text-foreground mb-6">
|
||||
{t('services.title', 'it')}
|
||||
</h1>
|
||||
<p class="text-lg sm:text-xl text-muted-foreground leading-relaxed">
|
||||
{t('services.subtitle', 'it')}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Copy the rest of the original file, updating all t() calls to use 'it' as the locale -->
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
25
src/pages/it/terms.astro
Normal file
25
src/pages/it/terms.astro
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import { t } from '../../utils/i18n';
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('footer.links.terms', 'it')} | ${t('meta.title', 'it')}`}
|
||||
description="Termini di servizio per Tiber365 - Comprendere il nostro accordo di servizio e i termini legali in conformità con le leggi europee e italiane."
|
||||
>
|
||||
<Header />
|
||||
<main class="py-16 bg-background">
|
||||
<div class="container-custom">
|
||||
<article class="prose prose-lg dark:prose-invert max-w-4xl mx-auto">
|
||||
<h1 class="text-4xl font-display font-bold mb-8">{t('footer.links.terms', 'it')}</h1>
|
||||
<div class="mb-8 text-sm text-muted-foreground">
|
||||
Ultimo aggiornamento: {new Date().toLocaleDateString()}
|
||||
</div>
|
||||
<!-- Copy the rest of the original file, updating all t() calls to use 'it' as the locale -->
|
||||
</article>
|
||||
</div>
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
62
src/pages/nl/404.astro
Normal file
62
src/pages/nl/404.astro
Normal file
@@ -0,0 +1,62 @@
|
||||
---
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import { t } from '../../utils/i18n';
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('404.title', 'nl')} | ${t('meta.title', 'nl')}`}
|
||||
description={t('404.description', 'nl')}
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<section class="min-h-screen flex items-center justify-center bg-gradient-to-br from-background via-background to-muted">
|
||||
<div class="container-custom">
|
||||
<div class="text-center max-w-2xl mx-auto animate-on-scroll">
|
||||
<!-- 404 Visual -->
|
||||
<div class="text-8xl sm:text-9xl font-bold text-primary/20 mb-8">404</div>
|
||||
<!-- Error message -->
|
||||
<h1 class="text-3xl sm:text-4xl lg:text-5xl font-display font-bold text-foreground mb-4">
|
||||
{t('404.title', 'nl')}
|
||||
</h1>
|
||||
<p class="text-lg sm:text-xl text-muted-foreground mb-8">
|
||||
{t('404.description', 'nl')}
|
||||
</p>
|
||||
<!-- Action buttons -->
|
||||
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
|
||||
<a
|
||||
href="/"
|
||||
class="btn-primary px-8 py-4 text-lg font-semibold rounded-xl shadow-lg hover:shadow-xl transition-all duration-300 hover:scale-105 inline-flex items-center group"
|
||||
>
|
||||
<svg class="h-5 w-5 mr-2 group-hover:-translate-x-1 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18"/>
|
||||
</svg>
|
||||
{t('404.button', 'nl')}
|
||||
</a>
|
||||
<a
|
||||
href="/contact"
|
||||
class="btn-outline px-8 py-4 text-lg font-semibold rounded-xl transition-all duration-300 hover:scale-105"
|
||||
>
|
||||
Hulp Nodig
|
||||
</a>
|
||||
</div>
|
||||
<!-- Helpful links -->
|
||||
<div class="mt-12">
|
||||
<p class="text-muted-foreground mb-4">Of probeer een van deze populaire pagina's:</p>
|
||||
<div class="flex flex-wrap justify-center gap-4">
|
||||
<a href="/services" class="text-primary hover:text-primary/80 transition-colors">Diensten</a>
|
||||
<span class="text-muted-foreground">•</span>
|
||||
<a href="/about" class="text-primary hover:text-primary/80 transition-colors">Over Ons</a>
|
||||
<span class="text-muted-foreground">•</span>
|
||||
<a href="/contact" class="text-primary hover:text-primary/80 transition-colors">Contact</a>
|
||||
<span class="text-muted-foreground">•</span>
|
||||
<a href="https://blog.tiber365.it" target="_blank" rel="noopener noreferrer" class="text-primary hover:text-primary/80 transition-colors">Blog</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
32
src/pages/nl/about.astro
Normal file
32
src/pages/nl/about.astro
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
import BaseLayout from "../../layouts/BaseLayout.astro";
|
||||
import Header from "../../components/Header.astro";
|
||||
import Footer from "../../components/Footer.astro";
|
||||
import CTA from "../../components/CTA.astro";
|
||||
import { Trans } from "astro-i18next/components";
|
||||
import i18next from "i18next";
|
||||
|
||||
// Initialize i18next for this page
|
||||
await i18next.changeLanguage("nl");
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={`${i18next.t("nav.about")} | ${i18next.t("meta.title")}`}
|
||||
description={i18next.t("meta.description")}
|
||||
keywords={i18next.t("meta.keywords")}
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<section class="py-20">
|
||||
<div class="container-custom">
|
||||
<h1 class="text-4xl font-bold mb-8">{i18next.t("about.title")}</h1>
|
||||
<div class="prose prose-lg">
|
||||
<p>{i18next.t("about.description")}</p>
|
||||
<p>{i18next.t("about.mission")}</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<CTA />
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
1
src/pages/nl/contact.astro
Normal file
1
src/pages/nl/contact.astro
Normal file
@@ -0,0 +1 @@
|
||||
|
29
src/pages/nl/index.astro
Normal file
29
src/pages/nl/index.astro
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
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";
|
||||
import { Trans } from "astro-i18next/components";
|
||||
import i18next from "i18next";
|
||||
|
||||
// Initialize i18next for this page
|
||||
await i18next.changeLanguage("nl");
|
||||
---
|
||||
|
||||
<BaseLayout
|
||||
title={i18next.t("meta.title")}
|
||||
description={i18next.t("meta.description")}
|
||||
keywords={i18next.t("meta.keywords")}
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<Hero />
|
||||
<Services />
|
||||
<Testimonials />
|
||||
<CTA />
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
1
src/pages/nl/privacy.astro
Normal file
1
src/pages/nl/privacy.astro
Normal file
@@ -0,0 +1 @@
|
||||
|
35
src/pages/nl/services.astro
Normal file
35
src/pages/nl/services.astro
Normal file
@@ -0,0 +1,35 @@
|
||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||
import Header from '../../components/Header.astro';
|
||||
import Footer from '../../components/Footer.astro';
|
||||
import CTA from '../../components/CTA.astro';
|
||||
import { SERVICES } from '../../site.config';
|
||||
import { t } from '../../utils/i18n';
|
||||
|
||||
const getServiceDetails = (serviceId) => {
|
||||
// Copy the same logic as in the original services.astro
|
||||
// ... (omitted for brevity, copy from original)
|
||||
};
|
||||
|
||||
<BaseLayout
|
||||
title={`${t('nav.services', 'nl')} | ${t('meta.title', 'nl')}`}
|
||||
description="Uitgebreide IT-diensten voor kleine bedrijven: Microsoft 365-ondersteuning, netwerkoplossingen, webhosting en maatwerk IT-projecten."
|
||||
>
|
||||
<Header />
|
||||
<main>
|
||||
<!-- Services Hero -->
|
||||
<section class="py-20 bg-gradient-to-br from-background via-background to-muted">
|
||||
<div class="container-custom">
|
||||
<div class="text-center max-w-4xl mx-auto animate-on-scroll">
|
||||
<h1 class="text-4xl sm:text-5xl lg:text-6xl font-display font-bold text-foreground mb-6">
|
||||
{t('services.title', 'nl')}
|
||||
</h1>
|
||||
<p class="text-lg sm:text-xl text-muted-foreground leading-relaxed">
|
||||
{t('services.subtitle', 'nl')}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Copy the rest of the original file, updating all t() calls to use 'nl' as the locale -->
|
||||
</main>
|
||||
<Footer />
|
||||
</BaseLayout>
|
1
src/pages/nl/terms.astro
Normal file
1
src/pages/nl/terms.astro
Normal file
@@ -0,0 +1 @@
|
||||
|
Reference in New Issue
Block a user