full site update

This commit is contained in:
2025-07-24 18:46:24 +02:00
parent bfe2b90d8d
commit 37a6e0ab31
6912 changed files with 540482 additions and 361712 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@@ -0,0 +1,10 @@
{
"$ref": "#/definitions/i18n",
"definitions": {
"i18n": {
"type": "object",
"additionalProperties": {}
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}

View File

@@ -0,0 +1 @@
export default new Map();

View File

@@ -0,0 +1 @@
export default new Map();

207
.astro/content.d.ts vendored Normal file
View File

@@ -0,0 +1,207 @@
declare module 'astro:content' {
export interface RenderResult {
Content: import('astro/runtime/server/index.js').AstroComponentFactory;
headings: import('astro').MarkdownHeading[];
remarkPluginFrontmatter: Record<string, any>;
}
interface Render {
'.md': Promise<RenderResult>;
}
export interface RenderedContent {
html: string;
metadata?: {
imagePaths: Array<string>;
[key: string]: unknown;
};
}
}
declare module 'astro:content' {
type Flatten<T> = T extends { [K: string]: infer U } ? U : never;
export type CollectionKey = keyof AnyEntryMap;
export type CollectionEntry<C extends CollectionKey> = Flatten<AnyEntryMap[C]>;
export type ContentCollectionKey = keyof ContentEntryMap;
export type DataCollectionKey = keyof DataEntryMap;
type AllValuesOf<T> = T extends any ? T[keyof T] : never;
type ValidContentEntrySlug<C extends keyof ContentEntryMap> = AllValuesOf<
ContentEntryMap[C]
>['slug'];
export type ReferenceDataEntry<
C extends CollectionKey,
E extends keyof DataEntryMap[C] = string,
> = {
collection: C;
id: E;
};
export type ReferenceContentEntry<
C extends keyof ContentEntryMap,
E extends ValidContentEntrySlug<C> | (string & {}) = string,
> = {
collection: C;
slug: E;
};
export type ReferenceLiveEntry<C extends keyof LiveContentConfig['collections']> = {
collection: C;
id: string;
};
/** @deprecated Use `getEntry` instead. */
export function getEntryBySlug<
C extends keyof ContentEntryMap,
E extends ValidContentEntrySlug<C> | (string & {}),
>(
collection: C,
// Note that this has to accept a regular string too, for SSR
entrySlug: E,
): E extends ValidContentEntrySlug<C>
? Promise<CollectionEntry<C>>
: Promise<CollectionEntry<C> | undefined>;
/** @deprecated Use `getEntry` instead. */
export function getDataEntryById<C extends keyof DataEntryMap, E extends keyof DataEntryMap[C]>(
collection: C,
entryId: E,
): Promise<CollectionEntry<C>>;
export function getCollection<C extends keyof AnyEntryMap, E extends CollectionEntry<C>>(
collection: C,
filter?: (entry: CollectionEntry<C>) => entry is E,
): Promise<E[]>;
export function getCollection<C extends keyof AnyEntryMap>(
collection: C,
filter?: (entry: CollectionEntry<C>) => unknown,
): Promise<CollectionEntry<C>[]>;
export function getLiveCollection<C extends keyof LiveContentConfig['collections']>(
collection: C,
filter?: LiveLoaderCollectionFilterType<C>,
): Promise<
import('astro').LiveDataCollectionResult<LiveLoaderDataType<C>, LiveLoaderErrorType<C>>
>;
export function getEntry<
C extends keyof ContentEntryMap,
E extends ValidContentEntrySlug<C> | (string & {}),
>(
entry: ReferenceContentEntry<C, E>,
): E extends ValidContentEntrySlug<C>
? Promise<CollectionEntry<C>>
: Promise<CollectionEntry<C> | undefined>;
export function getEntry<
C extends keyof DataEntryMap,
E extends keyof DataEntryMap[C] | (string & {}),
>(
entry: ReferenceDataEntry<C, E>,
): E extends keyof DataEntryMap[C]
? Promise<DataEntryMap[C][E]>
: Promise<CollectionEntry<C> | undefined>;
export function getEntry<
C extends keyof ContentEntryMap,
E extends ValidContentEntrySlug<C> | (string & {}),
>(
collection: C,
slug: E,
): E extends ValidContentEntrySlug<C>
? Promise<CollectionEntry<C>>
: Promise<CollectionEntry<C> | undefined>;
export function getEntry<
C extends keyof DataEntryMap,
E extends keyof DataEntryMap[C] | (string & {}),
>(
collection: C,
id: E,
): E extends keyof DataEntryMap[C]
? string extends keyof DataEntryMap[C]
? Promise<DataEntryMap[C][E]> | undefined
: Promise<DataEntryMap[C][E]>
: Promise<CollectionEntry<C> | undefined>;
export function getLiveEntry<C extends keyof LiveContentConfig['collections']>(
collection: C,
filter: string | LiveLoaderEntryFilterType<C>,
): Promise<import('astro').LiveDataEntryResult<LiveLoaderDataType<C>, LiveLoaderErrorType<C>>>;
/** Resolve an array of entry references from the same collection */
export function getEntries<C extends keyof ContentEntryMap>(
entries: ReferenceContentEntry<C, ValidContentEntrySlug<C>>[],
): Promise<CollectionEntry<C>[]>;
export function getEntries<C extends keyof DataEntryMap>(
entries: ReferenceDataEntry<C, keyof DataEntryMap[C]>[],
): Promise<CollectionEntry<C>[]>;
export function render<C extends keyof AnyEntryMap>(
entry: AnyEntryMap[C][string],
): Promise<RenderResult>;
export function reference<C extends keyof AnyEntryMap>(
collection: C,
): import('astro/zod').ZodEffects<
import('astro/zod').ZodString,
C extends keyof ContentEntryMap
? ReferenceContentEntry<C, ValidContentEntrySlug<C>>
: ReferenceDataEntry<C, keyof DataEntryMap[C]>
>;
// Allow generic `string` to avoid excessive type errors in the config
// if `dev` is not running to update as you edit.
// Invalid collection names will be caught at build time.
export function reference<C extends string>(
collection: C,
): import('astro/zod').ZodEffects<import('astro/zod').ZodString, never>;
type ReturnTypeOrOriginal<T> = T extends (...args: any[]) => infer R ? R : T;
type InferEntrySchema<C extends keyof AnyEntryMap> = import('astro/zod').infer<
ReturnTypeOrOriginal<Required<ContentConfig['collections'][C]>['schema']>
>;
type ContentEntryMap = {
};
type DataEntryMap = {
"i18n": Record<string, {
id: string;
body?: string;
collection: "i18n";
data: InferEntrySchema<"i18n">;
rendered?: RenderedContent;
filePath?: string;
}>;
};
type AnyEntryMap = ContentEntryMap & DataEntryMap;
type ExtractLoaderTypes<T> = T extends import('astro/loaders').LiveLoader<
infer TData,
infer TEntryFilter,
infer TCollectionFilter,
infer TError
>
? { data: TData; entryFilter: TEntryFilter; collectionFilter: TCollectionFilter; error: TError }
: { data: never; entryFilter: never; collectionFilter: never; error: never };
type ExtractDataType<T> = ExtractLoaderTypes<T>['data'];
type ExtractEntryFilterType<T> = ExtractLoaderTypes<T>['entryFilter'];
type ExtractCollectionFilterType<T> = ExtractLoaderTypes<T>['collectionFilter'];
type ExtractErrorType<T> = ExtractLoaderTypes<T>['error'];
type LiveLoaderDataType<C extends keyof LiveContentConfig['collections']> =
LiveContentConfig['collections'][C]['schema'] extends undefined
? ExtractDataType<LiveContentConfig['collections'][C]['loader']>
: import('astro/zod').infer<
Exclude<LiveContentConfig['collections'][C]['schema'], undefined>
>;
type LiveLoaderEntryFilterType<C extends keyof LiveContentConfig['collections']> =
ExtractEntryFilterType<LiveContentConfig['collections'][C]['loader']>;
type LiveLoaderCollectionFilterType<C extends keyof LiveContentConfig['collections']> =
ExtractCollectionFilterType<LiveContentConfig['collections'][C]['loader']>;
type LiveLoaderErrorType<C extends keyof LiveContentConfig['collections']> = ExtractErrorType<
LiveContentConfig['collections'][C]['loader']
>;
export type ContentConfig = typeof import("../src/content/config.js");
export type LiveContentConfig = never;
}

1
.astro/data-store.json Normal file

File diff suppressed because one or more lines are too long

View File

@@ -1,5 +1,5 @@
{ {
"_variables": { "_variables": {
"lastUpdateCheck": 1747995329781 "lastUpdateCheck": 1753371171941
} }
} }

1
.astro/types.d.ts vendored
View File

@@ -1 +1,2 @@
/// <reference types="astro/client" /> /// <reference types="astro/client" />
/// <reference path="content.d.ts" />

View File

@@ -16,7 +16,7 @@ A modern, multilingual website for Tiber365, an IT services company specializing
- **Framework**: [Astro](https://astro.build/) 4.0 - **Framework**: [Astro](https://astro.build/) 4.0
- **Styling**: [Tailwind CSS](https://tailwindcss.com/) - **Styling**: [Tailwind CSS](https://tailwindcss.com/)
- **Internationalization**: [astro-i18next](https://github.com/yassinedoghri/astro-i18next) - **Internationalization**: Astro's built-in i18n
- **Fonts**: Inter & Poppins (Google Fonts) - **Fonts**: Inter & Poppins (Google Fonts)
- **Icons**: Heroicons SVGs - **Icons**: Heroicons SVGs

View File

@@ -1,57 +0,0 @@
/** @type {import('astro-i18next').AstroI18nextConfig} */
export default {
defaultLocale: "en",
locales: ["en", "nl", "it"],
namespaces: ["translation"],
defaultNamespace: "translation",
load: ["server", "client"],
i18nextServer: {
debug: true,
initImmediate: false,
supportedLngs: ["en", "nl", "it"],
fallbackLng: "en",
ns: ["translation"],
defaultNS: "translation",
resources: {
en: {
translation: () => import("../public/locales/en/translation.json")
},
nl: {
translation: () => import("../public/locales/nl/translation.json")
},
it: {
translation: () => import("../public/locales/it/translation.json")
}
}
},
i18nextClient: {
debug: false,
supportedLngs: ["en", "nl", "it"],
fallbackLng: "en",
ns: ["translation"],
defaultNS: "translation"
},
routes: {
en: {
about: 'about',
services: 'services',
contact: 'contact',
privacy: 'privacy',
terms: 'terms'
},
nl: {
about: 'over-ons',
services: 'diensten',
contact: 'contact',
privacy: 'privacy',
terms: 'voorwaarden'
},
it: {
about: 'chi-siamo',
services: 'servizi',
contact: 'contatti',
privacy: 'privacy',
terms: 'termini'
}
}
};

View File

@@ -1,48 +1,20 @@
import { defineConfig } from 'astro/config'; import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind'; import tailwind from '@astrojs/tailwind';
import astroI18next from 'astro-i18next'; import fs from 'fs'; // Import fs for reading certs
// https://astro.build/config // https://astro.build/config
export default defineConfig({ export default defineConfig({
site: 'https://tiber365.it', site: 'https://tiber365.it',
i18n: {
defaultLocale: 'en',
locales: ['en', 'nl', 'de', 'fr'],
routing: {
prefixDefaultLocale: true,
redirectToDefaultLocale: false
}
},
integrations: [ integrations: [
tailwind(), tailwind(),
astroI18next({
defaultLocale: "en",
locales: ["en", "nl", "it"],
i18next: {
debug: true,
initImmediate: false,
supportedLngs: ["en", "nl", "it"],
fallbackLng: "en",
load: "all"
},
i18nextPlugins: { fsBackend: 'i18next-fs-backend' },
showDefaultLocale: true,
routes: {
en: {
about: 'about',
services: 'services',
contact: 'contact',
privacy: 'privacy',
terms: 'terms'
},
nl: {
about: 'over-ons',
services: 'diensten',
contact: 'contact',
privacy: 'privacy',
terms: 'voorwaarden'
},
it: {
about: 'chi-siamo',
services: 'servizi',
contact: 'contatti',
privacy: 'privacy',
terms: 'termini'
}
}
}),
], ],
output: 'static', output: 'static',
build: { build: {
@@ -51,6 +23,24 @@ export default defineConfig({
vite: { vite: {
optimizeDeps: { optimizeDeps: {
exclude: ['astro:content'] exclude: ['astro:content']
},
build: {
cssMinify: true,
minify: 'terser',
rollupOptions: {
output: {
manualChunks: {
'vendor': ['astro']
}
}
}
},
server: {
port: 4321,
https: {
key: fs.readFileSync('./localhost-key.pem'),
cert: fs.readFileSync('./localhost.pem')
}
} }
} }
}); });

6
dist/404.html vendored

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
import{i as e}from"./theme.BcH1Etvo.js";document.addEventListener("DOMContentLoaded",()=>{e(),function(){if("undefined"==typeof window)return;const e=new IntersectionObserver(e=>{e.forEach(e=>{e.isIntersecting&&e.target.classList.add("in-view")})},{threshold:.1,rootMargin:"0px 0px -50px 0px"});document.querySelectorAll(".animate-on-scroll").forEach(o=>e.observe(o))}(),function(){"PerformanceObserver"in window&&(new PerformanceObserver(e=>{const o=e.getEntries(),n=o[o.length-1];console.log("LCP:",n.startTime),n.startTime<2500?console.log("✅ LCP is good"):console.log("⚠️ LCP needs improvement")}).observe({entryTypes:["largest-contentful-paint"]}),new PerformanceObserver(e=>{e.getEntries().forEach(e=>{const o=e;console.log("FID:",o.processingStart-o.startTime),o.processingStart-o.startTime<100?console.log("✅ FID is good"):console.log("⚠️ FID needs improvement")})}).observe({entryTypes:["first-input"]}),new PerformanceObserver(e=>{let o=0;e.getEntries().forEach(e=>{e.hadRecentInput||(o+=e.value)}),console.log("CLS:",o),o<.1?console.log("✅ CLS is good"):console.log("⚠️ CLS needs improvement")}).observe({entryTypes:["layout-shift"]}));window.addEventListener("load",()=>{const e=performance.now();console.log("Page load time:",e);const o=performance.getEntriesByType("navigation")[0];o&&(console.log("DOM Content Loaded:",o.domContentLoadedEventEnd-o.domContentLoadedEventStart),console.log("Load Complete:",o.loadEventEnd-o.loadEventStart))})}(),"serviceWorker"in navigator&&navigator.serviceWorker.register("/sw.js").then(e=>{console.log("SW registered: ",e)}).catch(e=>{console.log("SW registration failed: ",e)})});

View File

@@ -0,0 +1 @@
import{t as e,g as t}from"./theme.BcH1Etvo.js";document.addEventListener("DOMContentLoaded",()=>{const d=document.getElementById("theme-toggle"),n=document.getElementById("theme-toggle-light-icon"),i=document.getElementById("theme-toggle-dark-icon");if(!d||!n||!i)return;function o(){"dark"===t()?(n.classList.add("hidden"),i.classList.remove("hidden")):(n.classList.remove("hidden"),i.classList.add("hidden"))}o(),d.addEventListener("click",()=>{e(),o()});new MutationObserver(()=>{o()}).observe(document.documentElement,{attributes:!0,attributeFilter:["data-theme"]})});

File diff suppressed because one or more lines are too long

1
dist/_astro/about.C05z7JL7.css vendored Normal file

File diff suppressed because one or more lines are too long

1
dist/_astro/about.Ct3MDOu0.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
function r(){if(typeof window>"u")return;const e={threshold:.1,rootMargin:"0px 0px -50px 0px"},t=new IntersectionObserver(n=>{n.forEach(d=>{d.isIntersecting&&d.target.classList.add("in-view")})},e);return document.querySelectorAll(".animate-on-scroll").forEach(n=>t.observe(n)),t}function i(){return typeof localStorage<"u"&&localStorage.getItem("theme")?localStorage.getItem("theme"):window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}function s(e){localStorage.setItem("theme",e),c(e)}function c(e){document.documentElement.setAttribute("data-theme",e);const t=document.querySelector('meta[name="theme-color"]');t&&t.setAttribute("content",e==="dark"?"#0f172a":"#ffffff")}function a(){const e=i();c(e),window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",t=>{localStorage.getItem("theme")||c(t.matches?"dark":"light")})}function m(){const t=i()==="light"?"dark":"light";return s(t),t}document.addEventListener("DOMContentLoaded",()=>{a(),r()});document.addEventListener("DOMContentLoaded",()=>{const e=document.getElementById("mobile-menu-button"),t=document.getElementById("mobile-menu"),o=document.getElementById("mobile-menu-icon"),n=document.getElementById("mobile-close-icon");e&&t&&o&&n&&(e.addEventListener("click",()=>{const d=e.getAttribute("aria-expanded")==="true";e.setAttribute("aria-expanded",(!d).toString()),t.classList.toggle("hidden"),o.classList.toggle("hidden"),n.classList.toggle("hidden")}),document.addEventListener("click",d=>{!e.contains(d.target)&&!t.contains(d.target)&&(e.setAttribute("aria-expanded","false"),t.classList.add("hidden"),o.classList.remove("hidden"),n.classList.add("hidden"))}))});document.addEventListener("DOMContentLoaded",()=>{const e=document.getElementById("theme-toggle"),t=document.getElementById("theme-toggle-light-icon"),o=document.getElementById("theme-toggle-dark-icon");if(!e||!t||!o)return;function n(){i()==="dark"?(t.classList.add("hidden"),o.classList.remove("hidden")):(t.classList.remove("hidden"),o.classList.add("hidden"))}n(),e.addEventListener("click",()=>{m(),n()}),new MutationObserver(()=>{n()}).observe(document.documentElement,{attributes:!0,attributeFilter:["data-theme"]})});

View File

@@ -1 +0,0 @@
import"./hoisted.BsMfRRdS.js";document.addEventListener("DOMContentLoaded",()=>{const t=document.getElementById("contact-form"),n=document.getElementById("submit-btn"),s=document.getElementById("submit-text"),d=document.getElementById("submit-spinner"),e=document.getElementById("form-message");t&&t.addEventListener("submit",async r=>{r.preventDefault(),n.disabled=!0,s.textContent="Sending...",d.classList.remove("hidden");try{await new Promise(o=>setTimeout(o,2e3)),e.className="mt-4 p-4 rounded-lg bg-green-50 border border-green-200 text-green-800",e.textContent="Message sent successfully! We'll get back to you soon.",e.classList.remove("hidden"),t.reset()}catch{e.className="mt-4 p-4 rounded-lg bg-red-50 border border-red-200 text-red-800",e.textContent="Failed to send message. Please try again.",e.classList.remove("hidden")}finally{n.disabled=!1,s.textContent="Send Message",d.classList.add("hidden")}})});

1
dist/_astro/theme.BcH1Etvo.js vendored Normal file
View File

@@ -0,0 +1 @@
function e(){return"undefined"!=typeof localStorage&&localStorage.getItem("theme")?localStorage.getItem("theme"):window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}function t(e){document.documentElement.setAttribute("data-theme",e);const t=document.querySelector('meta[name="theme-color"]');t&&t.setAttribute("content","dark"===e?"#0f172a":"#ffffff")}function a(){t(e()),window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",e=>{localStorage.getItem("theme")||t(e.matches?"dark":"light")})}function o(){const a="light"===e()?"dark":"light";var o;return o=a,localStorage.setItem("theme",o),t(o),a}export{e as g,a as i,o as t};

24
dist/_headers vendored Normal file
View File

@@ -0,0 +1,24 @@
/*
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Referrer-Policy: strict-origin-when-cross-origin
Permissions-Policy: camera=(), microphone=(), geolocation=()
Content-Security-Policy: default-src 'self'; script-src 'self' 'unsafe-inline' https://fonts.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; img-src 'self' data: https:; connect-src 'self' https://support.tiber365.it; frame-ancestors 'none';
/*
Cache-Control: public, max-age=31536000, immutable
/sw.js
Cache-Control: public, max-age=0, must-revalidate
/manifest.json
Cache-Control: public, max-age=31536000, immutable
/favicon.svg
Cache-Control: public, max-age=31536000, immutable
/images/*
Cache-Control: public, max-age=31536000, immutable
/sitemap.xml
Cache-Control: public, max-age=3600

View File

@@ -1,3 +0,0 @@
const onRequest = (_, next) => next();
export { onRequest };

30
dist/about/index.html vendored

File diff suppressed because one or more lines are too long

1
dist/blog/index.html vendored Normal file
View File

@@ -0,0 +1 @@
<!DOCTYPE html><html> <head><meta charset="utf-8"><title>Redirecting...</title><meta http-equiv="refresh" content="0;url=/en/blog"><link rel="canonical" href="/en/blog"><link rel="stylesheet" href="/_astro/about.C05z7JL7.css"></head> <body> <p>Redirecting to <a href="/en/blog">blog</a>...</p> </body></html>

View File

@@ -0,0 +1 @@
<!DOCTYPE html><html> <head><meta charset="utf-8"><title>Redirecting...</title><meta http-equiv="refresh" content="0;url=/en/blog/{slug}"><link rel="canonical" href="/en/blog/{slug}"><link rel="stylesheet" href="/_astro/about.C05z7JL7.css"></head> <body> <p>Redirecting to <a href="/en/blog/{slug}">blog post</a>...</p> </body></html>

View File

@@ -1,14 +0,0 @@
import { c as createComponent, m as maybeRenderHead, a as renderTemplate } from './astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
import 'clsx';
import { t } from './Footer_BFBz0LQo.mjs';
const $$CTA = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`${maybeRenderHead()}<section class="py-20 bg-gradient-to-br from-primary via-primary to-secondary text-primary-foreground relative overflow-hidden"> <!-- Background decoration --> <div class="absolute inset-0 opacity-10"> <div class="absolute top-10 left-10 w-32 h-32 rounded-full bg-white blur-2xl"></div> <div class="absolute bottom-10 right-10 w-48 h-48 rounded-full bg-white blur-3xl"></div> <div class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-64 h-64 rounded-full bg-white blur-3xl"></div> </div> <div class="container-custom relative z-10"> <div class="text-center max-w-4xl mx-auto animate-on-scroll"> <!-- CTA heading --> <h2 class="text-3xl sm:text-4xl lg:text-5xl font-display font-bold mb-6"> ${t("cta.title")} </h2> <!-- CTA subtitle --> <p class="text-lg sm:text-xl mb-8 opacity-90 leading-relaxed"> ${t("cta.subtitle")} </p> <!-- CTA button --> <div class="flex flex-col sm:flex-row gap-4 justify-center items-center"> <a href="/contact" class="bg-background text-foreground hover:bg-background/90 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"> ${t("cta.button")} <svg class="h-5 w-5 ml-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="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"></path> </svg> </a> <a href="tel:+391234567890" class="border-2 border-primary-foreground text-primary-foreground hover:bg-primary-foreground hover:text-primary px-8 py-4 text-lg font-semibold rounded-xl transition-all duration-300 hover:scale-105 inline-flex items-center">
Call Now
<svg class="h-5 w-5 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path> </svg> </a> </div> <!-- Contact info --> <div class="mt-8 opacity-80"> <p class="text-sm">
📧 info@tiber365.it | 📞 +39 123 456 7890
</p> </div> </div> </div> </section>`;
}, "/Users/richard/Website Development/tiber365/src/components/CTA.astro", void 0);
export { $$CTA as $ };

View File

@@ -1,806 +0,0 @@
import { d as createAstro, c as createComponent, r as renderComponent, F as Fragment, a as renderTemplate, u as unescapeHTML, m as maybeRenderHead, s as spreadAttributes, b as addAttribute, e as renderHead, f as renderSlot } from './astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
import i18next, { t as t$1 } from 'i18next';
/* empty css */
import 'clsx';
import '@proload/core';
import '@proload/plugin-tsm';
import { P, T } from './page-ssr_ChKiSmuh.mjs';
import localeEmoji from 'locale-emoji';
import ISO6991 from 'iso-639-1';
const SITE = {
title: "Tiber365",
description: "Professional IT services for freelancers and small businesses. Microsoft 365 support, networking solutions, web hosting, and custom IT projects.",
author: "Tiber365",
ogImage: "/images/og-image.jpg"};
const LANGUAGES = {
en: "English",
nl: "Nederlands",
it: "Italiano"
};
const NAVIGATION = [
{
label: "nav.home",
href: "/",
type: "internal"
},
{
label: "nav.services",
href: "/services",
type: "internal"
},
{
label: "nav.about",
href: "/about",
type: "internal"
},
{
label: "nav.blog",
href: "https://blog.tiber365.it",
type: "external"
},
{
label: "nav.support",
href: "https://support.tiber365.it",
type: "external"
}
];
const SERVICES = [
{
id: "microsoft365",
icon: "🏢",
titleKey: "services.microsoft365.title",
descriptionKey: "services.microsoft365.description",
features: [
"services.microsoft365.features.migrations",
"services.microsoft365.features.apps",
"services.microsoft365.features.teams",
"services.microsoft365.features.sharepoint",
"services.microsoft365.features.admin"
]
},
{
id: "management",
icon: "⚙️",
titleKey: "services.management.title",
descriptionKey: "services.management.description",
features: [
"services.management.features.automation",
"services.management.features.monitoring",
"services.management.features.maintenance",
"services.management.features.optimization"
]
},
{
id: "networking",
icon: "🌐",
titleKey: "services.networking.title",
descriptionKey: "services.networking.description",
features: [
"services.networking.features.ubiquiti",
"services.networking.features.infrastructure",
"services.networking.features.security",
"services.networking.features.monitoring"
]
},
{
id: "hosting",
icon: "🚀",
titleKey: "services.hosting.title",
descriptionKey: "services.hosting.description",
features: [
"services.hosting.features.webhosting",
"services.hosting.features.domains",
"services.hosting.features.ssl",
"services.hosting.features.backup"
]
},
{
id: "custom",
icon: "🛠️",
titleKey: "services.custom.title",
descriptionKey: "services.custom.description",
features: [
"services.custom.features.consultation",
"services.custom.features.development",
"services.custom.features.integration",
"services.custom.features.support"
]
}
];
const TESTIMONIALS = [
{
id: 1,
nameKey: "testimonials.1.name",
companyKey: "testimonials.1.company",
contentKey: "testimonials.1.content",
rating: 5
},
{
id: 2,
nameKey: "testimonials.2.name",
companyKey: "testimonials.2.company",
contentKey: "testimonials.2.content",
rating: 5
},
{
id: 3,
nameKey: "testimonials.3.name",
companyKey: "testimonials.3.company",
contentKey: "testimonials.3.content",
rating: 5
}
];
const interpolate = (i18nKey, referenceString, namespace = null) => {
const localizedString = t$1(i18nKey, { ns: namespace });
if (localizedString === i18nKey) {
console.warn(`WARNING(astro-i18next): missing translation key ${i18nKey}.`);
return referenceString;
}
const tagsRegex = /<([\w\d]+)([^>]*)>/gi;
const referenceStringMatches = referenceString.match(tagsRegex);
if (!referenceStringMatches) {
console.warn(
"WARNING(astro-i18next): default slot does not include any HTML tag to interpolate! You should use the `t` function directly."
);
return localizedString;
}
const referenceTags = [];
referenceStringMatches.forEach((tagNode) => {
const [, name, attributes] = tagsRegex.exec(tagNode);
referenceTags.push({ name, attributes });
tagsRegex.exec("");
});
let interpolatedString = localizedString;
for (let index = 0; index < referenceTags.length; index++) {
const referencedTag = referenceTags[index];
interpolatedString = interpolatedString.replaceAll(
`<${index}>`,
`<${referencedTag.name}${referencedTag.attributes}>`
);
interpolatedString = interpolatedString.replaceAll(
`</${index}>`,
`</${referencedTag.name}>`
);
}
return interpolatedString;
};
const createReferenceStringFromHTML = (html) => {
const allowedTags = ["strong", "br", "em", "i", "b"];
let forbiddenStrings = [];
if (i18next.options) {
forbiddenStrings = [
"keySeparator",
"nsSeparator",
"pluralSeparator",
"contextSeparator"
].map((key) => {
return {
key,
str: i18next.options[key]
};
}).filter(function(val) {
return typeof val !== "undefined";
});
}
const tagsRegex = /<([\w\d]+)([^>]*)>/gi;
const referenceStringMatches = html.match(tagsRegex);
if (!referenceStringMatches) {
console.warn(
"WARNING(astro-i18next): default slot does not include any HTML tag to interpolate! You should use the `t` function directly."
);
return html;
}
const referenceTags = [];
referenceStringMatches.forEach((tagNode) => {
const [, name, attributes] = tagsRegex.exec(tagNode);
referenceTags.push({ name, attributes });
tagsRegex.exec("");
});
let sanitizedString = html.replace(/\s+/g, " ").trim();
for (let index = 0; index < referenceTags.length; index++) {
const referencedTag = referenceTags[index];
if (allowedTags.includes(referencedTag.name) && referencedTag.attributes.trim().length === 0) {
continue;
}
sanitizedString = sanitizedString.replaceAll(
new RegExp(`<${referencedTag.name}[^>]*?\\s*\\/>`, "gi"),
`<${index}/>`
);
sanitizedString = sanitizedString.replaceAll(
`<${referencedTag.name}${referencedTag.attributes}>`,
`<${index}>`
);
sanitizedString = sanitizedString.replaceAll(
`</${referencedTag.name}>`,
`</${index}>`
);
}
for (let index = 0; index < forbiddenStrings.length; index++) {
const { key, str } = forbiddenStrings[index];
if (sanitizedString.includes(str)) {
console.warn(
`WARNING(astro-i18next): "${str}" was found in a <Trans> translation key, but it is also used as ${key}. Either explicitly set an i18nKey or change the value of ${key}.`
);
}
}
return sanitizedString;
};
const $$Astro$3 = createAstro("https://tiber365.it");
const $$Trans = createComponent(async ($$result, $$props, $$slots) => {
const Astro2 = $$result.createAstro($$Astro$3, $$props, $$slots);
Astro2.self = $$Trans;
const { i18nKey, ns } = Astro2.props;
const referenceString = await Astro2.slots.render("default");
let key;
if (typeof i18nKey === "string") {
key = i18nKey;
} else {
key = createReferenceStringFromHTML(referenceString);
}
return renderTemplate`${renderComponent($$result, "Fragment", Fragment, {}, { "default": async ($$result2) => renderTemplate`${unescapeHTML(interpolate(key, referenceString, ns))}` })}`;
}, "/Users/richard/Website Development/tiber365/node_modules/astro-i18next/src/components/Trans.astro", void 0);
const $$Astro$2 = createAstro("https://tiber365.it");
const $$LanguageSelector = createComponent(($$result, $$props, $$slots) => {
const Astro2 = $$result.createAstro($$Astro$2, $$props, $$slots);
Astro2.self = $$LanguageSelector;
const supportedLanguages = i18next.languages;
const currentLanguage = i18next.language;
const { pathname } = Astro2.url;
const { showFlag = false, languageMapping, ...attributes } = Astro2.props;
return renderTemplate`${maybeRenderHead()}<select onchange="location = this.value;"${spreadAttributes(attributes)}> ${supportedLanguages.map((supportedLanguage) => {
let value = P(pathname, supportedLanguage);
const flag = showFlag ? localeEmoji(supportedLanguage) + " " : "";
let nativeName = "";
if (languageMapping && languageMapping.hasOwnProperty(supportedLanguage)) {
nativeName = languageMapping[supportedLanguage];
} else {
nativeName = ISO6991.getNativeName(supportedLanguage);
}
const label = flag + nativeName;
return renderTemplate`<option${addAttribute(value, "value")}${addAttribute(supportedLanguage === currentLanguage, "selected")}> ${label} </option>`;
})} </select>`;
}, "/Users/richard/Website Development/tiber365/node_modules/astro-i18next/src/components/LanguageSelector.astro", void 0);
const $$Astro$1 = createAstro("https://tiber365.it");
const $$HeadHrefLangs = createComponent(($$result, $$props, $$slots) => {
const Astro2 = $$result.createAstro($$Astro$1, $$props, $$slots);
Astro2.self = $$HeadHrefLangs;
const supportedLanguages = i18next.languages;
const currentUrl = Astro2.url.href;
return renderTemplate`${supportedLanguages.map((supportedLanguage) => renderTemplate`<link rel="alternate"${addAttribute(supportedLanguage, "hreflang")}${addAttribute(T(currentUrl, supportedLanguage), "href")}>`)}`;
}, "/Users/richard/Website Development/tiber365/node_modules/astro-i18next/src/components/HeadHrefLangs.astro", void 0);
const $$Astro = createAstro("https://tiber365.it");
const $$BaseLayout = createComponent(($$result, $$props, $$slots) => {
const Astro2 = $$result.createAstro($$Astro, $$props, $$slots);
Astro2.self = $$BaseLayout;
const {
title = SITE.title,
description = SITE.description,
image = SITE.ogImage,
keywords = ""
} = Astro2.props;
const lang = i18next.language || "en";
let canonicalURL;
let ogImageURL;
let twitterImageURL;
try {
const siteURL = Astro2.site || new URL("http://localhost:4321");
canonicalURL = new URL(Astro2.url.pathname, siteURL);
ogImageURL = new URL(image, siteURL);
twitterImageURL = new URL(image, siteURL);
} catch (error) {
const fallbackSite = "https://tiber365.it";
canonicalURL = new URL(Astro2.url?.pathname || "/", fallbackSite);
ogImageURL = new URL(image, fallbackSite);
twitterImageURL = new URL(image, fallbackSite);
}
const fullTitle = title === SITE.title ? title : `${title} | ${SITE.title}`;
return renderTemplate`<html${addAttribute(lang, "lang")} class="scroll-smooth"> <head><meta charset="UTF-8"><meta name="description"${addAttribute(description, "content")}><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator"${addAttribute(Astro2.generator, "content")}>${keywords && renderTemplate`<meta name="keywords"${addAttribute(keywords, "content")}>`}<!-- Canonical URL --><link rel="canonical"${addAttribute(canonicalURL, "href")}><!-- Primary Meta Tags --><title>${fullTitle}</title><meta name="title"${addAttribute(fullTitle, "content")}><meta name="description"${addAttribute(description, "content")}><meta name="author"${addAttribute(SITE.author, "content")}><!-- Prevent automatic language redirects --><meta name="google" content="notranslate"><meta http-equiv="Content-Language"${addAttribute(lang, "content")}><!-- Theme Color --><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#3b82f6"><!-- Open Graph / Facebook --><meta property="og:type" content="website"><meta property="og:url"${addAttribute(canonicalURL, "content")}><meta property="og:title"${addAttribute(fullTitle, "content")}><meta property="og:description"${addAttribute(description, "content")}><meta property="og:image"${addAttribute(ogImageURL, "content")}><meta property="og:site_name"${addAttribute(SITE.title, "content")}><meta property="og:locale"${addAttribute(lang === "en" ? "en_US" : lang === "nl" ? "nl_NL" : "it_IT", "content")}><!-- Twitter --><meta property="twitter:card" content="summary_large_image"><meta property="twitter:url"${addAttribute(canonicalURL, "content")}><meta property="twitter:title"${addAttribute(fullTitle, "content")}><meta property="twitter:description"${addAttribute(description, "content")}><meta property="twitter:image"${addAttribute(twitterImageURL, "content")}><!-- Favicons --><link rel="icon" type="image/svg+xml" href="/favicon.svg"><link rel="manifest" href="/manifest.json"><!-- Language alternates -->${renderComponent($$result, "HeadHrefLangs", $$HeadHrefLangs, {})}${renderHead()}</head> <body class="min-h-screen bg-background text-foreground"> ${renderSlot($$result, $$slots["default"])} <!-- Initialize animations --> </body> </html>`;
}, "/Users/richard/Website Development/tiber365/src/layouts/BaseLayout.astro", void 0);
const translations = {
en: {
"meta": {
"title": "Tiber365 - Professional IT Services",
"description": "Professional IT services for freelancers and small businesses. Microsoft 365 support, networking solutions, web hosting, and custom IT projects.",
"keywords": "IT services, Microsoft 365, networking, web hosting, automation, small business IT"
},
"nav": {
"home": "Home",
"services": "Services",
"about": "About",
"contact": "Contact",
"blog": "Blog",
"support": "Support",
"language": "Language",
"theme": {
"toggle": "Toggle theme"
}
},
"hero": {
"title": "Professional IT Services for Your Business",
"subtitle": "Empowering freelancers and small businesses with reliable Microsoft 365 support, networking solutions, web hosting, and custom IT projects.",
"trusted": "Trusted by businesses across Italy",
"cta": {
"primary": "Get Started Today",
"secondary": "View Our Services"
}
},
"services": {
"title": "Our Services",
"subtitle": "Comprehensive IT solutions tailored for small businesses and freelancers",
"viewAll": "View All Services",
"microsoft365": {
"title": "Microsoft 365 Support",
"description": "Complete Microsoft 365 setup, migration, and ongoing support for your business.",
"features": {
"migrations": "Email & data migrations",
"apps": "Office apps configuration",
"teams": "Microsoft Teams setup",
"sharepoint": "SharePoint collaboration",
"admin": "Admin portal management"
}
},
"management": {
"title": "Full M365 Management",
"description": "Let us handle your entire Microsoft 365 environment with proactive management.",
"features": {
"automation": "Automated workflows",
"monitoring": "24/7 system monitoring",
"maintenance": "Regular maintenance",
"optimization": "Performance optimization"
}
},
"networking": {
"title": "Networking & Infrastructure",
"description": "Professional networking solutions using Ubiquiti and UniFi equipment.",
"features": {
"ubiquiti": "Ubiquiti/UniFi specialists",
"infrastructure": "Network infrastructure",
"security": "Network security",
"monitoring": "Traffic monitoring"
}
},
"hosting": {
"title": "Web Hosting & Management",
"description": "Reliable web hosting with full management and maintenance included.",
"features": {
"webhosting": "Reliable web hosting",
"domains": "Domain management",
"ssl": "SSL certificates",
"backup": "Automated backups"
}
},
"custom": {
"title": "Custom IT Projects",
"description": "Tailored IT solutions designed specifically for your business needs.",
"features": {
"consultation": "IT consultation",
"development": "Custom development",
"integration": "System integration",
"support": "Ongoing support"
}
}
},
"testimonials": {
"title": "What Our Clients Say",
"subtitle": "Don't just take our word for it - see what our satisfied clients have to say",
"1": {
"name": "Marco Rossi",
"company": "Freelance Designer",
"content": "Tiber365 transformed our Microsoft 365 setup. Professional service and excellent support!"
},
"2": {
"name": "Sofia Bianchi",
"company": "Small Business Owner",
"content": "Their networking solutions are top-notch. Our office runs smoothly thanks to their expertise."
},
"3": {
"name": "Giuseppe Verdi",
"company": "Consultant",
"content": "Reliable web hosting and great customer service. Highly recommend Tiber365!"
}
},
"about": {
"title": "About Us",
"subtitle": "Your trusted IT partner",
"description": "We specialize in providing comprehensive IT services to freelancers and small businesses.",
"mission": "Our mission is to make technology work for you, not against you.",
"experience": "Years of Experience",
"clients": "Happy Clients",
"projects": "Projects Completed"
},
"contact": {
"title": "Get In Touch",
"subtitle": "Ready to transform your IT infrastructure? Let's talk!",
"info": {
"email": "info@tiber365.it",
"phone": "+39 123 456 7890",
"address": "Rome, Italy"
},
"form": {
"name": "Name",
"email": "Email",
"company": "Company",
"service": "Service",
"message": "Message",
"send": "Send Message"
}
},
"cta": {
"title": "Ready to Get Started?",
"subtitle": "Let's discuss how we can help transform your IT infrastructure.",
"button": "Contact Us Today"
},
"footer": {
"description": "Professional IT services for freelancers and small businesses.",
"copyright": "© 2024 Tiber365. All rights reserved.",
"links": {
"contact": "Contact",
"privacy": "Privacy Policy",
"terms": "Terms of Service"
}
},
"404": {
"title": "Page Not Found",
"description": "Sorry, we couldn't find the page you're looking for.",
"button": "Go back home"
}
},
nl: {
"meta": {
"title": "Tiber365 - Professionele IT Services",
"description": "Professionele IT-diensten voor freelancers en kleine bedrijven. Microsoft 365 ondersteuning, netwerkoplossingen, webhosting en aangepaste IT-projecten.",
"keywords": "IT diensten, Microsoft 365, netwerken, webhosting, automatisering, kleine bedrijven IT"
},
"nav": {
"home": "Home",
"services": "Diensten",
"about": "Over Ons",
"contact": "Contact",
"blog": "Blog",
"support": "Ondersteuning",
"language": "Taal",
"theme": {
"toggle": "Thema wisselen"
}
},
"hero": {
"title": "Professionele IT Services voor Uw Bedrijf",
"subtitle": "Ondersteuning van freelancers en kleine bedrijven met betrouwbare Microsoft 365 ondersteuning, netwerkoplossingen, webhosting en aangepaste IT-projecten.",
"trusted": "Vertrouwd door bedrijven in heel Italië",
"cta": {
"primary": "Begin Vandaag",
"secondary": "Bekijk Onze Diensten"
}
},
"services": {
"title": "Onze Diensten",
"subtitle": "Uitgebreide IT-oplossingen op maat voor kleine bedrijven en freelancers",
"viewAll": "Alle Diensten Bekijken",
"microsoft365": {
"title": "Microsoft 365 Ondersteuning",
"description": "Complete Microsoft 365 installatie, migratie en doorlopende ondersteuning.",
"features": {
"migrations": "E-mail & data migraties",
"apps": "Office apps configuratie",
"teams": "Microsoft Teams installatie",
"sharepoint": "SharePoint samenwerking",
"admin": "Beheerportaal management"
}
},
"management": {
"title": "Volledig M365 Beheer",
"description": "Laat ons uw volledige Microsoft 365 omgeving beheren met proactief management.",
"features": {
"automation": "Geautomatiseerde workflows",
"monitoring": "24/7 systeembewaking",
"maintenance": "Regelmatig onderhoud",
"optimization": "Prestatie optimalisatie"
}
},
"networking": {
"title": "Netwerken & Infrastructuur",
"description": "Professionele netwerkoplossingen met Ubiquiti en UniFi apparatuur.",
"features": {
"ubiquiti": "Ubiquiti/UniFi specialisten",
"infrastructure": "Netwerkinfrastructuur",
"security": "Netwerkbeveiliging",
"monitoring": "Verkeer monitoring"
}
},
"hosting": {
"title": "Webhosting & Beheer",
"description": "Betrouwbare webhosting met volledig beheer en onderhoud inbegrepen.",
"features": {
"webhosting": "Betrouwbare webhosting",
"domains": "Domeinbeheer",
"ssl": "SSL certificaten",
"backup": "Geautomatiseerde backups"
}
},
"custom": {
"title": "Aangepaste IT Projecten",
"description": "Op maat gemaakte IT-oplossingen speciaal ontworpen voor uw bedrijfsbehoeften.",
"features": {
"consultation": "IT consultatie",
"development": "Aangepaste ontwikkeling",
"integration": "Systeemintegratie",
"support": "Doorlopende ondersteuning"
}
}
},
"testimonials": {
"title": "Wat Onze Klanten Zeggen",
"subtitle": "Geloof ons niet zomaar - zie wat onze tevreden klanten te zeggen hebben",
"1": {
"name": "Marco Rossi",
"company": "Freelance Designer",
"content": "Tiber365 heeft onze Microsoft 365 installatie getransformeerd. Professionele service en uitstekende ondersteuning!"
},
"2": {
"name": "Sofia Bianchi",
"company": "Kleine Bedrijfseigenaar",
"content": "Hun netwerkoplossingen zijn eersteklas. Ons kantoor draait soepel dankzij hun expertise."
},
"3": {
"name": "Giuseppe Verdi",
"company": "Consultant",
"content": "Betrouwbare webhosting en geweldige klantenservice. Beveel Tiber365 ten zeerste aan!"
}
},
"about": {
"title": "Over Ons",
"subtitle": "Uw vertrouwde IT-partner",
"description": "Wij zijn gespecialiseerd in het leveren van uitgebreide IT-diensten aan freelancers en kleine bedrijven.",
"mission": "Onze missie is om technologie voor u te laten werken, niet tegen u.",
"experience": "Jaren Ervaring",
"clients": "Tevreden Klanten",
"projects": "Voltooide Projecten"
},
"contact": {
"title": "Neem Contact Op",
"subtitle": "Klaar om uw IT-infrastructuur te transformeren? Laten we praten!",
"info": {
"email": "info@tiber365.it",
"phone": "+39 123 456 7890",
"address": "Rome, Italië"
},
"form": {
"name": "Naam",
"email": "E-mail",
"company": "Bedrijf",
"service": "Dienst",
"message": "Bericht",
"send": "Bericht Versturen"
}
},
"cta": {
"title": "Klaar om te Beginnen?",
"subtitle": "Laten we bespreken hoe wij uw IT-infrastructuur kunnen transformeren.",
"button": "Neem Vandaag Contact Op"
},
"footer": {
"description": "Professionele IT-diensten voor freelancers en kleine bedrijven.",
"copyright": "© 2024 Tiber365. Alle rechten voorbehouden.",
"links": {
"contact": "Contact",
"privacy": "Privacybeleid",
"terms": "Servicevoorwaarden"
}
},
"404": {
"title": "Pagina Niet Gevonden",
"description": "Sorry, we konden de pagina die u zoekt niet vinden.",
"button": "Ga terug naar home"
}
},
it: {
"meta": {
"title": "Tiber365 - Servizi IT Professionali",
"description": "Servizi IT professionali per freelancer e piccole imprese. Supporto Microsoft 365, soluzioni di rete, hosting web e progetti IT personalizzati.",
"keywords": "servizi IT, Microsoft 365, networking, web hosting, automazione, IT piccole imprese"
},
"nav": {
"home": "Home",
"services": "Servizi",
"about": "Chi Siamo",
"contact": "Contatti",
"blog": "Blog",
"support": "Supporto",
"language": "Lingua",
"theme": {
"toggle": "Cambia tema"
}
},
"hero": {
"title": "Servizi IT Professionali per la Tua Azienda",
"subtitle": "Supportiamo freelancer e piccole imprese con supporto Microsoft 365 affidabile, soluzioni di rete, hosting web e progetti IT personalizzati.",
"trusted": "Fidato dalle aziende in tutta Italia",
"cta": {
"primary": "Inizia Oggi",
"secondary": "Vedi i Nostri Servizi"
}
},
"services": {
"title": "I Nostri Servizi",
"subtitle": "Soluzioni IT complete su misura per piccole imprese e freelancer",
"viewAll": "Vedi Tutti i Servizi",
"microsoft365": {
"title": "Supporto Microsoft 365",
"description": "Installazione completa, migrazione e supporto continuo per Microsoft 365.",
"features": {
"migrations": "Migrazioni email e dati",
"apps": "Configurazione app Office",
"teams": "Configurazione Microsoft Teams",
"sharepoint": "Collaborazione SharePoint",
"admin": "Gestione portale amministratore"
}
},
"management": {
"title": "Gestione Completa M365",
"description": "Lascia che ci occupiamo dell'intero ambiente Microsoft 365 con gestione proattiva.",
"features": {
"automation": "Flussi di lavoro automatizzati",
"monitoring": "Monitoraggio sistema 24/7",
"maintenance": "Manutenzione regolare",
"optimization": "Ottimizzazione prestazioni"
}
},
"networking": {
"title": "Networking e Infrastruttura",
"description": "Soluzioni di rete professionali con apparecchiature Ubiquiti e UniFi.",
"features": {
"ubiquiti": "Specialisti Ubiquiti/UniFi",
"infrastructure": "Infrastruttura di rete",
"security": "Sicurezza di rete",
"monitoring": "Monitoraggio traffico"
}
},
"hosting": {
"title": "Web Hosting e Gestione",
"description": "Hosting web affidabile con gestione completa e manutenzione inclusa.",
"features": {
"webhosting": "Hosting web affidabile",
"domains": "Gestione domini",
"ssl": "Certificati SSL",
"backup": "Backup automatizzati"
}
},
"custom": {
"title": "Progetti IT Personalizzati",
"description": "Soluzioni IT su misura progettate specificamente per le tue esigenze aziendali.",
"features": {
"consultation": "Consulenza IT",
"development": "Sviluppo personalizzato",
"integration": "Integrazione sistemi",
"support": "Supporto continuo"
}
}
},
"testimonials": {
"title": "Cosa Dicono i Nostri Clienti",
"subtitle": "Non prendere solo la nostra parola - vedi cosa hanno da dire i nostri clienti soddisfatti",
"1": {
"name": "Marco Rossi",
"company": "Designer Freelance",
"content": "Tiber365 ha trasformato la nostra configurazione Microsoft 365. Servizio professionale e supporto eccellente!"
},
"2": {
"name": "Sofia Bianchi",
"company": "Proprietaria Piccola Impresa",
"content": "Le loro soluzioni di rete sono di prim'ordine. Il nostro ufficio funziona perfettamente grazie alla loro competenza."
},
"3": {
"name": "Giuseppe Verdi",
"company": "Consulente",
"content": "Hosting web affidabile e ottimo servizio clienti. Raccomando vivamente Tiber365!"
}
},
"about": {
"title": "Chi Siamo",
"subtitle": "Il tuo partner IT di fiducia",
"description": "Siamo specializzati nel fornire servizi IT completi a freelancer e piccole imprese.",
"mission": "La nostra missione è far sì che la tecnologia lavori per te, non contro di te.",
"experience": "Anni di Esperienza",
"clients": "Clienti Soddisfatti",
"projects": "Progetti Completati"
},
"contact": {
"title": "Contattaci",
"subtitle": "Pronto a trasformare la tua infrastruttura IT? Parliamone!",
"info": {
"email": "info@tiber365.it",
"phone": "+39 123 456 7890",
"address": "Roma, Italia"
},
"form": {
"name": "Nome",
"email": "Email",
"company": "Azienda",
"service": "Servizio",
"message": "Messaggio",
"send": "Invia Messaggio"
}
},
"cta": {
"title": "Pronto per Iniziare?",
"subtitle": "Discutiamo di come possiamo aiutare a trasformare la tua infrastruttura IT.",
"button": "Contattaci Oggi"
},
"footer": {
"description": "Servizi IT professionali per freelancer e piccole imprese.",
"copyright": "© 2024 Tiber365. Tutti i diritti riservati.",
"links": {
"contact": "Contatti",
"privacy": "Privacy Policy",
"terms": "Termini di Servizio"
}
},
"404": {
"title": "Pagina Non Trovata",
"description": "Spiacenti, non siamo riusciti a trovare la pagina che stai cercando.",
"button": "Torna alla home"
}
}
};
const SUPPORTED_LOCALES = ["en", "nl", "it"];
function getCurrentLocaleFromStorage() {
if (typeof window !== "undefined") {
try {
const savedLocale = localStorage.getItem("tiber365-locale");
if (savedLocale && SUPPORTED_LOCALES.includes(savedLocale)) {
return savedLocale;
}
} catch (error) {
console.warn("Error accessing localStorage:", error);
}
}
return "en";
}
function t(key, locale) {
try {
const targetLocale = locale || getCurrentLocaleFromStorage();
const keys = key.split(".");
let value = translations[targetLocale];
for (const k of keys) {
value = value?.[k];
if (value === void 0) {
console.warn(`Translation missing for key "${key}" in locale "${targetLocale}"`);
break;
}
}
if (!value && targetLocale !== "en") {
console.warn(`Falling back to English for key "${key}"`);
value = t(key, "en");
}
return value || key;
} catch (error) {
console.error(`Translation error for key "${key}":`, error);
return key;
}
}
const $$ThemeToggle = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`${maybeRenderHead()}<button id="theme-toggle" class="inline-flex items-center justify-center p-2 rounded-md text-muted-foreground hover:text-foreground hover:bg-accent focus:outline-none focus:ring-2 focus:ring-primary"${addAttribute(t("nav.theme.toggle"), "aria-label")}${addAttribute(t("nav.theme.toggle"), "title")}> <!-- Sun icon (light mode) --> <svg id="theme-toggle-light-icon" class="h-5 w-5" fill="currentColor" viewBox="0 0 20 20"> <path fill-rule="evenodd" d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z" clip-rule="evenodd"></path> </svg> <!-- Moon icon (dark mode) --> <svg id="theme-toggle-dark-icon" class="h-5 w-5 hidden" fill="currentColor" viewBox="0 0 20 20"> <path d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"></path> </svg> </button> `;
}, "/Users/richard/Website Development/tiber365/src/components/ThemeToggle.astro", void 0);
const $$LanguageSwitcher = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`${maybeRenderHead()}<div class="relative inline-block text-left" data-astro-cid-a2mxz4y6> ${renderComponent($$result, "LanguageSelector", $$LanguageSelector, { "class": "inline-flex items-center justify-center p-2 rounded-md text-muted-foreground hover:text-foreground hover:bg-accent focus:outline-none focus:ring-2 focus:ring-primary", "showFlag": true, "languageMapping": LANGUAGES, "data-astro-cid-a2mxz4y6": true })} </div> `;
}, "/Users/richard/Website Development/tiber365/src/components/LanguageSwitcher.astro", void 0);
const $$Header = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`${maybeRenderHead()}<header class="sticky top-0 z-50 w-full border-b border-border/40 bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60"> <nav class="container-custom"> <div class="flex h-16 items-center justify-between"> <!-- Logo --> <div class="flex items-center"> <a href="/" class="flex items-center space-x-2"> <div class="h-8 w-8 flex items-center justify-center"> <img src="/images/TIBER365.png" alt="Tiber365 Logo" class="h-6 w-6 object-contain"> </div> <span class="font-display font-bold text-xl text-foreground">Tiber365</span> </a> </div> <!-- Desktop Navigation --> <div class="hidden md:flex items-center space-x-6"> ${NAVIGATION.map((item) => renderTemplate`<a${addAttribute(item.href, "href")}${addAttribute(item.type === "external" ? "_blank" : void 0, "target")}${addAttribute(item.type === "external" ? "noopener noreferrer" : void 0, "rel")} class="text-sm font-medium text-muted-foreground hover:text-foreground transition-colors relative group"> ${t(item.label)} ${item.type === "external" && renderTemplate`<svg class="inline h-3 w-3 ml-1 opacity-70" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path> </svg>`} <span class="absolute inset-x-0 -bottom-1 h-0.5 bg-primary scale-x-0 group-hover:scale-x-100 transition-transform origin-left"></span> </a>`)} </div> <!-- Theme Toggle & Language Switcher --> <div class="flex items-center space-x-4"> ${renderComponent($$result, "LanguageSwitcher", $$LanguageSwitcher, {})} ${renderComponent($$result, "ThemeToggle", $$ThemeToggle, {})} <!-- Mobile Menu Button --> <button id="mobile-menu-button" class="md:hidden inline-flex items-center justify-center p-2 rounded-md text-muted-foreground hover:text-foreground hover:bg-accent focus:outline-none focus:ring-2 focus:ring-primary" aria-expanded="false" aria-label="Toggle mobile menu"> <svg id="mobile-menu-icon" class="h-6 w-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path> </svg> <svg id="mobile-close-icon" class="h-6 w-6 hidden" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path> </svg> </button> </div> </div> <!-- Mobile Navigation --> <div id="mobile-menu" class="md:hidden hidden border-t border-border"> <div class="px-2 pt-2 pb-3 space-y-1"> ${NAVIGATION.map((item) => renderTemplate`<a${addAttribute(item.href, "href")}${addAttribute(item.type === "external" ? "_blank" : void 0, "target")}${addAttribute(item.type === "external" ? "noopener noreferrer" : void 0, "rel")} class="block px-3 py-2 text-base font-medium text-muted-foreground hover:text-foreground hover:bg-accent rounded-md transition-colors"> ${t(item.label)} ${item.type === "external" && renderTemplate`<svg class="inline h-4 w-4 ml-1 opacity-70" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path> </svg>`} </a>`)} </div> </div> </nav> </header> `;
}, "/Users/richard/Website Development/tiber365/src/components/Header.astro", void 0);
const $$Footer = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`${maybeRenderHead()}<footer class="bg-secondary-900 text-secondary-100 pt-16 pb-8"> <div class="container-custom"> <!-- Main footer content --> <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-8"> <!-- Company info --> <div class="lg:col-span-2"> <!-- Logo --> <div class="flex items-center space-x-2 mb-4"> <div class="h-8 w-8 flex items-center justify-center"> <img src="/images/TIBER365.png" alt="Tiber365 Logo" class="h-6 w-6 object-contain"> </div> <span class="font-display font-bold text-xl text-white">Tiber365</span> </div> <!-- Description --> <p class="text-secondary-300 mb-6 max-w-md leading-relaxed"> ${t("footer.description")} </p> <!-- Contact info --> <div class="space-y-2"> <div class="flex items-center text-secondary-300"> <svg class="h-5 w-5 mr-3 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 4.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path> </svg> ${t("contact.info.email")} </div> <div class="flex items-center text-secondary-300"> <svg class="h-5 w-5 mr-3 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path> </svg> ${t("contact.info.phone")} </div> <div class="flex items-center text-secondary-300"> <svg class="h-5 w-5 mr-3 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"></path> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"></path> </svg> ${t("contact.info.address")} </div> </div> </div> <!-- Quick Links --> <div> <h3 class="font-semibold text-white mb-4">Quick Links</h3> <ul class="space-y-2"> ${NAVIGATION.filter((item) => item.type === "internal").map((item) => renderTemplate`<li> <a${addAttribute(item.href, "href")} class="text-secondary-300 hover:text-primary transition-colors"> ${t(item.label)} </a> </li>`)} <li> <a href="/contact" class="text-secondary-300 hover:text-primary transition-colors"> ${t("footer.links.contact")} </a> </li> </ul> </div> <!-- External Links --> <div> <h3 class="font-semibold text-white mb-4">Resources</h3> <ul class="space-y-2"> ${NAVIGATION.filter((item) => item.type === "external").map((item) => renderTemplate`<li> <a${addAttribute(item.href, "href")} target="_blank" rel="noopener noreferrer" class="text-secondary-300 hover:text-primary transition-colors inline-flex items-center"> ${t(item.label)} <svg class="h-3 w-3 ml-1" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path> </svg> </a> </li>`)} <li> <a href="/privacy" class="text-secondary-300 hover:text-primary transition-colors"> ${t("footer.links.privacy")} </a> </li> <li> <a href="/terms" class="text-secondary-300 hover:text-primary transition-colors"> ${t("footer.links.terms")} </a> </li> </ul> </div> </div> <!-- Footer bottom --> <div class="border-t border-secondary-800 pt-8"> <div class="flex flex-col md:flex-row justify-between items-center"> <!-- Copyright --> <p class="text-secondary-400 text-sm"> ${t("footer.copyright")} </p> <!-- Social links placeholder --> <div class="flex items-center space-x-4 mt-4 md:mt-0"> <a href="https://blog.tiber365.it" target="_blank" rel="noopener noreferrer" class="text-secondary-400 hover:text-primary transition-colors" aria-label="Blog"> <svg class="h-5 w-5" fill="currentColor" viewBox="0 0 24 24"> <path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z"></path> </svg> </a> <a href="https://support.tiber365.it" target="_blank" rel="noopener noreferrer" class="text-secondary-400 hover:text-primary transition-colors" aria-label="Support Portal"> <svg class="h-5 w-5" fill="currentColor" viewBox="0 0 24 24"> <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"></path> </svg> </a> </div> </div> </div> </div> </footer>`;
}, "/Users/richard/Website Development/tiber365/src/components/Footer.astro", void 0);
export { $$BaseLayout as $, SERVICES as S, TESTIMONIALS as T, $$Header as a, $$Footer as b, $$Trans as c, t };

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +0,0 @@
import 'kleur/colors';
import './astro/server_DJC9Xx9K.mjs';
import 'clsx';

View File

@@ -1,64 +0,0 @@
/* empty css */
import i18next from 'i18next';
import fsBackend from 'i18next-fs-backend';
import module2 from 'module';
import path2 from 'path';
import * as url2 from 'url';
import '@proload/core';
import '@proload/plugin-tsm';
module2.createRequire(import.meta.url);
const __filename = url2.fileURLToPath(import.meta.url);
path2.dirname(__filename);
var g = { config: { defaultLocale: "cimode", locales: [], namespaces: "translation", defaultNamespace: "translation", load: ["server"], routes: {}, flatRoutes: {}, showDefaultLocale: false, trailingSlash: "ignore", resourcesBasePath: "/locales" } }, A = (e) => {
let r = {};
for (let n in e) n === "routes" && (r = y(e[n])), g.config[n] = e[n];
g.config.flatRoutes = r;
}, y = (e, r = [], n = [], s = null) => {
let o = s || {};
for (let t in e) if (typeof e[t] == "object" && e[t] !== null) y(e[t], [...r, t], [...n, Object.prototype.hasOwnProperty.call(e[t], "index") ? e[t].index : t], o);
else {
let l = "/" + r.join("/"), i = "/" + n.join("/");
t === "index" ? (o[l] = i, l += "/" + t, i += "/" + t, o[l] = i) : (l += "/" + t, i += "/" + e[t], o[l] = i);
}
return o;
};
var m = (e, r) => {
if (e === "/") return e;
switch (r) {
case "always":
return e.endsWith("/") ? e : e + "/";
case "never":
return e.replace(/\/$/, "");
default:
return e;
}
}, P = (e = "/", r = null, n = "/") => {
r || (r = i18next.language);
let s = e.split("/").filter((f) => f !== ""), o = n.split("/").filter((f) => f !== "");
JSON.stringify(s).startsWith(JSON.stringify(o).replace(/]+$/, "")) && s.splice(0, o.length), e = s.length === 0 ? "" : s.join("/"), n = o.length === 0 ? "/" : "/" + o.join("/") + "/";
let { flatRoutes: t, showDefaultLocale: l, defaultLocale: i, locales: a, trailingSlash: c } = g.config;
if (!a.includes(r)) return console.warn(`WARNING(astro-i18next): "${r}" locale is not supported, add it to the locales in your astro config.`), m(`${n}${e}`, c);
if (s.length === 0) return m(l ? `${n}${r}` : r === i ? n : `${n}${r}`, c);
if (r === i) {
let f = Object.keys(t).find((d) => t[d] === "/" + e);
typeof f < "u" && (s = f.split("/").filter((d) => d !== ""));
}
for (let f of a) if (s[0] === f) {
s.shift();
break;
}
(l || r !== i) && (s = [r, ...s]);
let u = n + s.join("/");
return Object.prototype.hasOwnProperty.call(t, u.replace(/\/$/, "")) ? m(t[u.replace(/\/$/, "")], c) : m(u, c);
}, T = (e, r = null, n = "/") => {
let [s, , o, ...t] = e.split("/");
return s + "//" + o + P(t.join("/"), r, n);
};
function fe(e) {
A(e);
}
i18next.use(fsBackend).init({"supportedLngs": ["cimode",],"fallbackLng": ["cimode",],"ns": "translation","defaultNS": "translation","initImmediate": false,"backend": {"loadPath": "/Users/richard/Website%20Development/tiber365/public/locales/{{lng}}/{{ns}}.json",},});fe({"defaultLocale": "cimode","locales": ["cimode",],"namespaces": "translation","defaultNamespace": "translation","load": ["server",],"routes": {},"flatRoutes": {},"showDefaultLocale": false,"trailingSlash": "ignore","resourcesBasePath": "/locales",});
export { P, T };

File diff suppressed because one or more lines are too long

2
dist/de/404/index.html vendored Normal file

File diff suppressed because one or more lines are too long

6
dist/de/about/index.html vendored Normal file

File diff suppressed because one or more lines are too long

4
dist/de/blog/index.html vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

7
dist/de/contact/index.html vendored Normal file

File diff suppressed because one or more lines are too long

24
dist/de/index.html vendored Normal file

File diff suppressed because one or more lines are too long

2
dist/de/privacy/index.html vendored Normal file

File diff suppressed because one or more lines are too long

2
dist/de/terms/index.html vendored Normal file

File diff suppressed because one or more lines are too long

2
dist/en/404/index.html vendored Normal file

File diff suppressed because one or more lines are too long

6
dist/en/about/index.html vendored Normal file

File diff suppressed because one or more lines are too long

4
dist/en/blog/index.html vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

7
dist/en/contact/index.html vendored Normal file

File diff suppressed because one or more lines are too long

24
dist/en/index.html vendored Normal file

File diff suppressed because one or more lines are too long

2
dist/en/privacy/index.html vendored Normal file

File diff suppressed because one or more lines are too long

2
dist/en/terms/index.html vendored Normal file

File diff suppressed because one or more lines are too long

2
dist/fr/404/index.html vendored Normal file

File diff suppressed because one or more lines are too long

6
dist/fr/about/index.html vendored Normal file

File diff suppressed because one or more lines are too long

4
dist/fr/blog/index.html vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

7
dist/fr/contact/index.html vendored Normal file

File diff suppressed because one or more lines are too long

24
dist/fr/index.html vendored Normal file

File diff suppressed because one or more lines are too long

2
dist/fr/privacy/index.html vendored Normal file

File diff suppressed because one or more lines are too long

2
dist/fr/terms/index.html vendored Normal file

File diff suppressed because one or more lines are too long

1
dist/index.html vendored Normal file
View File

@@ -0,0 +1 @@
<!doctype html><title>Redirecting to: /en/</title><meta http-equiv="refresh" content="2;url=/en/"><meta name="robots" content="noindex"><link rel="canonical" href="https://tiber365.it/en/"><body> <a href="/en/">Redirecting from <code>/</code> to <code>/en/</code></a></body>

View File

@@ -1,148 +0,0 @@
{
"meta": {
"title": "Tiber365 - Professional IT Services",
"description": "Professional IT services for freelancers and small businesses. Microsoft 365 support, networking solutions, web hosting, and custom IT projects.",
"keywords": "IT services, Microsoft 365, networking, web hosting, automation, small business IT"
},
"nav": {
"home": "Home",
"services": "Services",
"about": "About",
"contact": "Contact",
"blog": "Blog",
"support": "Support",
"language": "Language",
"theme": {
"toggle": "Toggle theme"
}
},
"hero": {
"title": "Professional IT Services for Your Business",
"subtitle": "Empowering freelancers and small businesses with reliable Microsoft 365 support, networking solutions, web hosting, and custom IT projects.",
"trusted": "Trusted by businesses across Italy",
"cta": {
"primary": "Get Started Today",
"secondary": "View Our Services"
}
},
"services": {
"title": "Our Services",
"subtitle": "Comprehensive IT solutions tailored for small businesses and freelancers",
"viewAll": "View All Services",
"microsoft365": {
"title": "Microsoft 365 Support",
"description": "Complete Microsoft 365 setup, migration, and ongoing support for your business.",
"features": {
"migrations": "Email & data migrations",
"apps": "Office apps configuration",
"teams": "Microsoft Teams setup",
"sharepoint": "SharePoint collaboration",
"admin": "Admin portal management"
}
},
"management": {
"title": "Full M365 Management",
"description": "Let us handle your entire Microsoft 365 environment with proactive management.",
"features": {
"automation": "Automated workflows",
"monitoring": "24/7 system monitoring",
"maintenance": "Regular maintenance",
"optimization": "Performance optimization"
}
},
"networking": {
"title": "Networking & Infrastructure",
"description": "Professional networking solutions using Ubiquiti and UniFi equipment.",
"features": {
"ubiquiti": "Ubiquiti/UniFi specialists",
"infrastructure": "Network infrastructure",
"security": "Network security",
"monitoring": "Traffic monitoring"
}
},
"hosting": {
"title": "Web Hosting & Management",
"description": "Reliable web hosting with full management and maintenance included.",
"features": {
"webhosting": "Reliable web hosting",
"domains": "Domain management",
"ssl": "SSL certificates",
"backup": "Automated backups"
}
},
"custom": {
"title": "Custom IT Projects",
"description": "Tailored IT solutions designed specifically for your business needs.",
"features": {
"consultation": "IT consultation",
"development": "Custom development",
"integration": "System integration",
"support": "Ongoing support"
}
}
},
"testimonials": {
"title": "What Our Clients Say",
"subtitle": "Don't just take our word for it - see what our satisfied clients have to say",
"1": {
"name": "Marco Rossi",
"company": "Freelance Designer",
"content": "Tiber365 transformed our Microsoft 365 setup. Professional service and excellent support!"
},
"2": {
"name": "Sofia Bianchi",
"company": "Small Business Owner",
"content": "Their networking solutions are top-notch. Our office runs smoothly thanks to their expertise."
},
"3": {
"name": "Giuseppe Verdi",
"company": "Consultant",
"content": "Reliable web hosting and great customer service. Highly recommend Tiber365!"
}
},
"about": {
"title": "About Us",
"subtitle": "Your trusted IT partner",
"description": "We specialize in providing comprehensive IT services to freelancers and small businesses.",
"mission": "Our mission is to make technology work for you, not against you.",
"experience": "Years of Experience",
"clients": "Happy Clients",
"projects": "Projects Completed"
},
"contact": {
"title": "Get In Touch",
"subtitle": "Ready to transform your IT infrastructure? Let's talk!",
"info": {
"email": "info@tiber365.it",
"phone": "+39 123 456 7890",
"address": "Rome, Italy"
},
"form": {
"name": "Name",
"email": "Email",
"company": "Company",
"service": "Service",
"message": "Message",
"send": "Send Message"
}
},
"cta": {
"title": "Ready to Get Started?",
"subtitle": "Let's discuss how we can help transform your IT infrastructure.",
"button": "Contact Us Today"
},
"footer": {
"description": "Professional IT services for freelancers and small businesses.",
"copyright": "© 2024 Tiber365. All rights reserved.",
"links": {
"contact": "Contact",
"privacy": "Privacy Policy",
"terms": "Terms of Service"
}
},
"404": {
"title": "Page Not Found",
"description": "Sorry, we couldn't find the page you're looking for.",
"button": "Go back home"
}
}

View File

@@ -1,148 +0,0 @@
{
"meta": {
"title": "Tiber365 - Servizi IT Professionali",
"description": "Servizi IT professionali per freelancer e piccole imprese. Supporto Microsoft 365, soluzioni di rete, hosting web e progetti IT personalizzati.",
"keywords": "servizi IT, Microsoft 365, networking, web hosting, automazione, IT piccole imprese"
},
"nav": {
"home": "Home",
"services": "Servizi",
"about": "Chi Siamo",
"contact": "Contatti",
"blog": "Blog",
"support": "Supporto",
"language": "Lingua",
"theme": {
"toggle": "Cambia tema"
}
},
"hero": {
"title": "Servizi IT Professionali per la Tua Azienda",
"subtitle": "Supportiamo freelancer e piccole imprese con supporto Microsoft 365 affidabile, soluzioni di rete, hosting web e progetti IT personalizzati.",
"trusted": "Fidato dalle aziende in tutta Italia",
"cta": {
"primary": "Inizia Oggi",
"secondary": "Vedi i Nostri Servizi"
}
},
"services": {
"title": "I Nostri Servizi",
"subtitle": "Soluzioni IT complete su misura per piccole imprese e freelancer",
"viewAll": "Vedi Tutti i Servizi",
"microsoft365": {
"title": "Supporto Microsoft 365",
"description": "Installazione completa, migrazione e supporto continuo per Microsoft 365.",
"features": {
"migrations": "Migrazioni email e dati",
"apps": "Configurazione app Office",
"teams": "Configurazione Microsoft Teams",
"sharepoint": "Collaborazione SharePoint",
"admin": "Gestione portale amministratore"
}
},
"management": {
"title": "Gestione Completa M365",
"description": "Lascia che ci occupiamo dell'intero ambiente Microsoft 365 con gestione proattiva.",
"features": {
"automation": "Flussi di lavoro automatizzati",
"monitoring": "Monitoraggio sistema 24/7",
"maintenance": "Manutenzione regolare",
"optimization": "Ottimizzazione prestazioni"
}
},
"networking": {
"title": "Networking e Infrastruttura",
"description": "Soluzioni di rete professionali con apparecchiature Ubiquiti e UniFi.",
"features": {
"ubiquiti": "Specialisti Ubiquiti/UniFi",
"infrastructure": "Infrastruttura di rete",
"security": "Sicurezza di rete",
"monitoring": "Monitoraggio traffico"
}
},
"hosting": {
"title": "Web Hosting e Gestione",
"description": "Hosting web affidabile con gestione completa e manutenzione inclusa.",
"features": {
"webhosting": "Hosting web affidabile",
"domains": "Gestione domini",
"ssl": "Certificati SSL",
"backup": "Backup automatizzati"
}
},
"custom": {
"title": "Progetti IT Personalizzati",
"description": "Soluzioni IT su misura progettate specificamente per le tue esigenze aziendali.",
"features": {
"consultation": "Consulenza IT",
"development": "Sviluppo personalizzato",
"integration": "Integrazione sistemi",
"support": "Supporto continuo"
}
}
},
"testimonials": {
"title": "Cosa Dicono i Nostri Clienti",
"subtitle": "Non prendere solo la nostra parola - vedi cosa hanno da dire i nostri clienti soddisfatti",
"1": {
"name": "Marco Rossi",
"company": "Designer Freelance",
"content": "Tiber365 ha trasformato la nostra configurazione Microsoft 365. Servizio professionale e supporto eccellente!"
},
"2": {
"name": "Sofia Bianchi",
"company": "Proprietaria Piccola Impresa",
"content": "Le loro soluzioni di rete sono di prim'ordine. Il nostro ufficio funziona perfettamente grazie alla loro competenza."
},
"3": {
"name": "Giuseppe Verdi",
"company": "Consulente",
"content": "Hosting web affidabile e ottimo servizio clienti. Raccomando vivamente Tiber365!"
}
},
"about": {
"title": "Chi Siamo",
"subtitle": "Il tuo partner IT di fiducia",
"description": "Siamo specializzati nel fornire servizi IT completi a freelancer e piccole imprese.",
"mission": "La nostra missione è far sì che la tecnologia lavori per te, non contro di te.",
"experience": "Anni di Esperienza",
"clients": "Clienti Soddisfatti",
"projects": "Progetti Completati"
},
"contact": {
"title": "Contattaci",
"subtitle": "Pronto a trasformare la tua infrastruttura IT? Parliamone!",
"info": {
"email": "info@tiber365.it",
"phone": "+39 123 456 7890",
"address": "Roma, Italia"
},
"form": {
"name": "Nome",
"email": "Email",
"company": "Azienda",
"service": "Servizio",
"message": "Messaggio",
"send": "Invia Messaggio"
}
},
"cta": {
"title": "Pronto per Iniziare?",
"subtitle": "Discutiamo di come possiamo aiutare a trasformare la tua infrastruttura IT.",
"button": "Contattaci Oggi"
},
"footer": {
"description": "Servizi IT professionali per freelancer e piccole imprese.",
"copyright": "© 2024 Tiber365. Tutti i diritti riservati.",
"links": {
"contact": "Contatti",
"privacy": "Privacy Policy",
"terms": "Termini di Servizio"
}
},
"404": {
"title": "Pagina Non Trovata",
"description": "Spiacenti, non siamo riusciti a trovare la pagina che stai cercando.",
"button": "Torna alla home"
}
}

View File

@@ -1,148 +0,0 @@
{
"meta": {
"title": "Tiber365 - Professionele IT Services",
"description": "Professionele IT-diensten voor freelancers en kleine bedrijven. Microsoft 365 ondersteuning, netwerkoplossingen, webhosting en aangepaste IT-projecten.",
"keywords": "IT diensten, Microsoft 365, netwerken, webhosting, automatisering, kleine bedrijven IT"
},
"nav": {
"home": "Home",
"services": "Diensten",
"about": "Over Ons",
"contact": "Contact",
"blog": "Blog",
"support": "Ondersteuning",
"language": "Taal",
"theme": {
"toggle": "Thema wisselen"
}
},
"hero": {
"title": "Professionele IT Services voor Uw Bedrijf",
"subtitle": "Ondersteuning van freelancers en kleine bedrijven met betrouwbare Microsoft 365 ondersteuning, netwerkoplossingen, webhosting en aangepaste IT-projecten.",
"trusted": "Vertrouwd door bedrijven in heel Italië",
"cta": {
"primary": "Begin Vandaag",
"secondary": "Bekijk Onze Diensten"
}
},
"services": {
"title": "Onze Diensten",
"subtitle": "Uitgebreide IT-oplossingen op maat voor kleine bedrijven en freelancers",
"viewAll": "Alle Diensten Bekijken",
"microsoft365": {
"title": "Microsoft 365 Ondersteuning",
"description": "Complete Microsoft 365 installatie, migratie en doorlopende ondersteuning.",
"features": {
"migrations": "E-mail & data migraties",
"apps": "Office apps configuratie",
"teams": "Microsoft Teams installatie",
"sharepoint": "SharePoint samenwerking",
"admin": "Beheerportaal management"
}
},
"management": {
"title": "Volledig M365 Beheer",
"description": "Laat ons uw volledige Microsoft 365 omgeving beheren met proactief management.",
"features": {
"automation": "Geautomatiseerde workflows",
"monitoring": "24/7 systeembewaking",
"maintenance": "Regelmatig onderhoud",
"optimization": "Prestatie optimalisatie"
}
},
"networking": {
"title": "Netwerken & Infrastructuur",
"description": "Professionele netwerkoplossingen met Ubiquiti en UniFi apparatuur.",
"features": {
"ubiquiti": "Ubiquiti/UniFi specialisten",
"infrastructure": "Netwerkinfrastructuur",
"security": "Netwerkbeveiliging",
"monitoring": "Verkeer monitoring"
}
},
"hosting": {
"title": "Webhosting & Beheer",
"description": "Betrouwbare webhosting met volledig beheer en onderhoud inbegrepen.",
"features": {
"webhosting": "Betrouwbare webhosting",
"domains": "Domeinbeheer",
"ssl": "SSL certificaten",
"backup": "Geautomatiseerde backups"
}
},
"custom": {
"title": "Aangepaste IT Projecten",
"description": "Op maat gemaakte IT-oplossingen speciaal ontworpen voor uw bedrijfsbehoeften.",
"features": {
"consultation": "IT consultatie",
"development": "Aangepaste ontwikkeling",
"integration": "Systeemintegratie",
"support": "Doorlopende ondersteuning"
}
}
},
"testimonials": {
"title": "Wat Onze Klanten Zeggen",
"subtitle": "Geloof ons niet zomaar - zie wat onze tevreden klanten te zeggen hebben",
"1": {
"name": "Marco Rossi",
"company": "Freelance Designer",
"content": "Tiber365 heeft onze Microsoft 365 installatie getransformeerd. Professionele service en uitstekende ondersteuning!"
},
"2": {
"name": "Sofia Bianchi",
"company": "Kleine Bedrijfseigenaar",
"content": "Hun netwerkoplossingen zijn eersteklas. Ons kantoor draait soepel dankzij hun expertise."
},
"3": {
"name": "Giuseppe Verdi",
"company": "Consultant",
"content": "Betrouwbare webhosting en geweldige klantenservice. Beveel Tiber365 ten zeerste aan!"
}
},
"about": {
"title": "Over Ons",
"subtitle": "Uw vertrouwde IT-partner",
"description": "Wij zijn gespecialiseerd in het leveren van uitgebreide IT-diensten aan freelancers en kleine bedrijven.",
"mission": "Onze missie is om technologie voor u te laten werken, niet tegen u.",
"experience": "Jaren Ervaring",
"clients": "Tevreden Klanten",
"projects": "Voltooide Projecten"
},
"contact": {
"title": "Neem Contact Op",
"subtitle": "Klaar om uw IT-infrastructuur te transformeren? Laten we praten!",
"info": {
"email": "info@tiber365.it",
"phone": "+39 123 456 7890",
"address": "Rome, Italië"
},
"form": {
"name": "Naam",
"email": "E-mail",
"company": "Bedrijf",
"service": "Dienst",
"message": "Bericht",
"send": "Bericht Versturen"
}
},
"cta": {
"title": "Klaar om te Beginnen?",
"subtitle": "Laten we bespreken hoe wij uw IT-infrastructuur kunnen transformeren.",
"button": "Neem Vandaag Contact Op"
},
"footer": {
"description": "Professionele IT-diensten voor freelancers en kleine bedrijven.",
"copyright": "© 2024 Tiber365. Alle rechten voorbehouden.",
"links": {
"contact": "Contact",
"privacy": "Privacybeleid",
"terms": "Servicevoorwaarden"
}
},
"404": {
"title": "Pagina Niet Gevonden",
"description": "Sorry, we konden de pagina die u zoekt niet vinden.",
"button": "Ga terug naar home"
}
}

File diff suppressed because one or more lines are too long

2
dist/nl/404/index.html vendored Normal file

File diff suppressed because one or more lines are too long

6
dist/nl/about/index.html vendored Normal file

File diff suppressed because one or more lines are too long

4
dist/nl/blog/index.html vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

7
dist/nl/contact/index.html vendored Normal file

File diff suppressed because one or more lines are too long

24
dist/nl/index.html vendored Normal file

File diff suppressed because one or more lines are too long

2
dist/nl/privacy/index.html vendored Normal file

File diff suppressed because one or more lines are too long

2
dist/nl/terms/index.html vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -1,25 +0,0 @@
import '../chunks/page-ssr_ChKiSmuh.mjs';
import { c as createComponent, r as renderComponent, a as renderTemplate, m as maybeRenderHead } from '../chunks/astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
import { t, $ as $$BaseLayout, a as $$Header, b as $$Footer } from '../chunks/Footer_BFBz0LQo.mjs';
export { renderers } from '../renderers.mjs';
const $$404 = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`${renderComponent($$result, "BaseLayout", $$BaseLayout, { "title": `${t("404.title")} | ${t("meta.title")}`, "description": t("404.description") }, { "default": ($$result2) => renderTemplate` ${renderComponent($$result2, "Header", $$Header, {})} ${maybeRenderHead()}<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")} </h1> <p class="text-lg sm:text-xl text-muted-foreground mb-8"> ${t("404.description")} </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"></path> </svg> ${t("404.button")} </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> ${renderComponent($$result2, "Footer", $$Footer, {})} ` })}`;
}, "/Users/richard/Website Development/tiber365/src/pages/404.astro", void 0);
const $$file = "/Users/richard/Website Development/tiber365/src/pages/404.astro";
const $$url = "/404";
const _page = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
__proto__: null,
default: $$404,
file: $$file,
url: $$url
}, Symbol.toStringTag, { value: 'Module' }));
const page = () => _page;
export { page };

View File

@@ -1,50 +0,0 @@
import '../chunks/page-ssr_ChKiSmuh.mjs';
import { c as createComponent, r as renderComponent, a as renderTemplate, m as maybeRenderHead } from '../chunks/astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
import { changeLanguage } from 'i18next';
import { t, $ as $$BaseLayout, a as $$Header, b as $$Footer } from '../chunks/Footer_BFBz0LQo.mjs';
import { $ as $$CTA } from '../chunks/CTA_CIVpts3M.mjs';
export { renderers } from '../renderers.mjs';
const $$About = createComponent(($$result, $$props, $$slots) => {
changeLanguage("en");
return renderTemplate`${renderComponent($$result, "BaseLayout", $$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." }, { "default": ($$result2) => renderTemplate` ${renderComponent($$result2, "Header", $$Header, {})} ${maybeRenderHead()}<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> ${renderComponent($$result2, "CTA", $$CTA, {})} </main> ${renderComponent($$result2, "Footer", $$Footer, {})} ` })}`;
}, "/Users/richard/Website Development/tiber365/src/pages/about.astro", void 0);
const $$file = "/Users/richard/Website Development/tiber365/src/pages/about.astro";
const $$url = "/about";
const _page = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
__proto__: null,
default: $$About,
file: $$file,
url: $$url
}, Symbol.toStringTag, { value: 'Module' }));
const page = () => _page;
export { page };

View File

@@ -1,33 +0,0 @@
import '../chunks/page-ssr_ChKiSmuh.mjs';
import { c as createComponent, m as maybeRenderHead, a as renderTemplate, r as renderComponent } from '../chunks/astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
import { t, $ as $$BaseLayout, a as $$Header, b as $$Footer } from '../chunks/Footer_BFBz0LQo.mjs';
import 'clsx';
export { renderers } from '../renderers.mjs';
const $$ContactForm = createComponent(async ($$result, $$props, $$slots) => {
return renderTemplate`${maybeRenderHead()}<section class="py-20 bg-background"> <div class="container-custom"> <div class="max-w-4xl mx-auto"> <!-- Section header --> <div class="text-center mb-12 animate-on-scroll"> <h2 class="text-3xl sm:text-4xl lg:text-5xl font-display font-bold text-foreground mb-4"> ${t("contact.title")} </h2> <p class="text-lg sm:text-xl text-muted-foreground"> ${t("contact.subtitle")} </p> </div> <div class="grid grid-cols-1 lg:grid-cols-2 gap-12"> <!-- Contact form --> <div class="animate-on-scroll"> <form id="contact-form" class="space-y-6"> <!-- Name field --> <div> <label for="name" class="block text-sm font-medium text-foreground mb-2"> ${t("contact.form.name")} *
</label> <input type="text" id="name" name="name" required class="w-full px-4 py-3 border border-border rounded-lg bg-background text-foreground placeholder-muted-foreground focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent transition-all" placeholder="John Doe"> </div> <!-- Email field --> <div> <label for="email" class="block text-sm font-medium text-foreground mb-2"> ${t("contact.form.email")} *
</label> <input type="email" id="email" name="email" required class="w-full px-4 py-3 border border-border rounded-lg bg-background text-foreground placeholder-muted-foreground focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent transition-all" placeholder="john@company.com"> </div> <!-- Company field --> <div> <label for="company" class="block text-sm font-medium text-foreground mb-2"> ${t("contact.form.company")} </label> <input type="text" id="company" name="company" class="w-full px-4 py-3 border border-border rounded-lg bg-background text-foreground placeholder-muted-foreground focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent transition-all" placeholder="Your Company"> </div> <!-- Service field --> <div> <label for="service" class="block text-sm font-medium text-foreground mb-2"> ${t("contact.form.service")} </label> <select id="service" name="service" class="w-full px-4 py-3 border border-border rounded-lg bg-background text-foreground focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent transition-all"> <option value="">Select a service</option> <option value="microsoft365">Microsoft 365 Support</option> <option value="management">Full M365 Management</option> <option value="networking">Networking & Infrastructure</option> <option value="hosting">Web Hosting & Management</option> <option value="custom">Custom IT Projects</option> </select> </div> <!-- Message field --> <div> <label for="message" class="block text-sm font-medium text-foreground mb-2"> ${t("contact.form.message")} *
</label> <textarea id="message" name="message" rows="4" required class="w-full px-4 py-3 border border-border rounded-lg bg-background text-foreground placeholder-muted-foreground focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent transition-all resize-y" placeholder="Tell us about your IT needs..."></textarea> </div> <!-- Submit button --> <button type="submit" class="w-full btn-primary px-6 py-3 text-lg font-semibold rounded-lg transition-all duration-300 hover:scale-105 disabled:opacity-50 disabled:cursor-not-allowed" id="submit-btn"> <span id="submit-text">${t("contact.form.send")}</span> <svg id="submit-spinner" class="hidden inline h-5 w-5 ml-2 animate-spin" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"></path> </svg> </button> </form> <!-- Success/Error messages --> <div id="form-message" class="hidden mt-4 p-4 rounded-lg"></div> </div> <!-- Contact info --> <div class="animate-on-scroll" style="animation-delay: 0.2s"> <div class="card p-8"> <h3 class="text-xl font-display font-semibold text-foreground mb-6">
Get in Touch
</h3> <div class="space-y-4"> <!-- Email --> <div class="flex items-center"> <div class="flex-shrink-0 w-10 h-10 bg-primary/10 rounded-lg flex items-center justify-center mr-4"> <svg class="h-5 w-5 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 4.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path> </svg> </div> <div> <div class="text-sm text-muted-foreground">Email</div> <a href="mailto:info@tiber365.it" class="text-foreground hover:text-primary transition-colors"> ${t("contact.info.email")} </a> </div> </div> <!-- Phone --> <div class="flex items-center"> <div class="flex-shrink-0 w-10 h-10 bg-primary/10 rounded-lg flex items-center justify-center mr-4"> <svg class="h-5 w-5 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path> </svg> </div> <div> <div class="text-sm text-muted-foreground">Phone</div> <a href="tel:+391234567890" class="text-foreground hover:text-primary transition-colors"> ${t("contact.info.phone")} </a> </div> </div> <!-- Location --> <div class="flex items-center"> <div class="flex-shrink-0 w-10 h-10 bg-primary/10 rounded-lg flex items-center justify-center mr-4"> <svg class="h-5 w-5 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"></path> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"></path> </svg> </div> <div> <div class="text-sm text-muted-foreground">Location</div> <div class="text-foreground"> ${t("contact.info.address")} </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> `;
}, "/Users/richard/Website Development/tiber365/src/components/ContactForm.astro", void 0);
const $$Contact = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`${renderComponent($$result, "BaseLayout", $$BaseLayout, { "title": `${t("nav.contact")} | ${t("meta.title")}`, "description": "Contact Tiber365 for professional IT services. Get in touch for Microsoft 365 support, networking solutions, and custom IT projects." }, { "default": ($$result2) => renderTemplate` ${renderComponent($$result2, "Header", $$Header, {})} ${maybeRenderHead()}<main> ${renderComponent($$result2, "ContactForm", $$ContactForm, {})} </main> ${renderComponent($$result2, "Footer", $$Footer, {})} ` })}`;
}, "/Users/richard/Website Development/tiber365/src/pages/contact.astro", void 0);
const $$file = "/Users/richard/Website Development/tiber365/src/pages/contact.astro";
const $$url = "/contact";
const _page = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
__proto__: null,
default: $$Contact,
file: $$file,
url: $$url
}, Symbol.toStringTag, { value: 'Module' }));
const page = () => _page;
export { page };

View File

@@ -1,58 +0,0 @@
import '../chunks/page-ssr_ChKiSmuh.mjs';
import { c as createComponent, m as maybeRenderHead, r as renderComponent, a as renderTemplate, b as addAttribute } from '../chunks/astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
import i18next, { changeLanguage } from 'i18next';
import { c as $$Trans, t, S as SERVICES, T as TESTIMONIALS, $ as $$BaseLayout, a as $$Header, b as $$Footer } from '../chunks/Footer_BFBz0LQo.mjs';
/* empty css */
import 'clsx';
import { $ as $$CTA } from '../chunks/CTA_CIVpts3M.mjs';
export { renderers } from '../renderers.mjs';
const $$Hero = createComponent(($$result, $$props, $$slots) => {
console.log("Hero component locale:", i18next.language);
return renderTemplate`${maybeRenderHead()}<section class="relative min-h-[calc(100vh-4rem)] flex items-center justify-center bg-gradient-to-br from-background via-background to-muted overflow-hidden" data-astro-cid-bbe6dxrz> <div class="container-custom relative z-10" data-astro-cid-bbe6dxrz> <div class="grid lg:grid-cols-2 gap-12 lg:gap-8 items-center" data-astro-cid-bbe6dxrz> <!-- Text Content --> <div class="text-center lg:text-left animate-on-scroll" data-astro-cid-bbe6dxrz> <h1 class="text-4xl sm:text-5xl lg:text-6xl font-display font-bold text-foreground mb-6" data-astro-cid-bbe6dxrz> ${renderComponent($$result, "Trans", $$Trans, { "i18nKey": "hero.title", "data-astro-cid-bbe6dxrz": true }, { "default": ($$result2) => renderTemplate`
Professional IT Services for Your Business
` })} </h1> <p class="text-lg sm:text-xl text-muted-foreground mb-8 max-w-2xl mx-auto lg:mx-0" data-astro-cid-bbe6dxrz> ${renderComponent($$result, "Trans", $$Trans, { "i18nKey": "hero.subtitle", "data-astro-cid-bbe6dxrz": true }, { "default": ($$result2) => renderTemplate`
Empowering freelancers and small businesses with reliable Microsoft 365 support, networking solutions, web hosting, and custom IT projects.
` })} </p> <div class="flex flex-col sm:flex-row gap-4 justify-center lg:justify-start" data-astro-cid-bbe6dxrz> <a href="/contact" 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" data-astro-cid-bbe6dxrz> ${renderComponent($$result, "Trans", $$Trans, { "i18nKey": "hero.cta.primary", "data-astro-cid-bbe6dxrz": true }, { "default": ($$result2) => renderTemplate`
Get Started Today
` })} </a> <a href="/services" class="btn-outline px-8 py-4 text-lg font-semibold rounded-xl transition-all duration-300 hover:scale-105" data-astro-cid-bbe6dxrz> ${renderComponent($$result, "Trans", $$Trans, { "i18nKey": "hero.cta.secondary", "data-astro-cid-bbe6dxrz": true }, { "default": ($$result2) => renderTemplate`
View Our Services
` })} </a> </div> <p class="mt-8 text-sm text-muted-foreground" data-astro-cid-bbe6dxrz> ${renderComponent($$result, "Trans", $$Trans, { "i18nKey": "hero.trusted", "data-astro-cid-bbe6dxrz": true }, { "default": ($$result2) => renderTemplate`
Trusted by businesses across Italy
` })} </p> </div> <!-- Hero Image --> <div class="relative animate-on-scroll" style="animation-delay: 0.2s" data-astro-cid-bbe6dxrz> <div class="aspect-square rounded-3xl bg-gradient-to-br from-primary/20 via-primary/10 to-transparent p-8" data-astro-cid-bbe6dxrz> <img src="/images/hero-illustration.svg" alt="IT Services Illustration" class="w-full h-full object-contain" loading="eager" data-astro-cid-bbe6dxrz> </div> <!-- Decorative elements --> <div class="absolute -z-10 inset-0 blur-3xl opacity-30 bg-gradient-to-br from-primary via-primary/50 to-transparent" data-astro-cid-bbe6dxrz></div> </div> </div> </div> <!-- Background decorative elements --> <div class="absolute inset-0 -z-10 overflow-hidden" data-astro-cid-bbe6dxrz> <div class="absolute -top-1/2 -right-1/2 w-full h-full rotate-12 bg-gradient-radial from-primary/5 via-primary/2 to-transparent opacity-70" data-astro-cid-bbe6dxrz></div> <div class="absolute -bottom-1/2 -left-1/2 w-full h-full -rotate-12 bg-gradient-radial from-primary/5 via-primary/2 to-transparent opacity-70" data-astro-cid-bbe6dxrz></div> </div> </section> `;
}, "/Users/richard/Website Development/tiber365/src/components/Hero.astro", void 0);
const $$Services = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`${maybeRenderHead()}<section id="services" class="py-20 bg-muted/30"> <div class="container-custom"> <!-- Section header --> <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"> ${t("services.title")} </h2> <p class="text-lg sm:text-xl text-muted-foreground max-w-3xl mx-auto"> ${t("services.subtitle")} </p> </div> <!-- Services grid --> <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-12"> ${SERVICES.map((service, index) => renderTemplate`<div class="card p-6 hover:shadow-xl transition-all duration-300 hover:scale-105 animate-on-scroll group"${addAttribute(`animation-delay: ${index * 0.1}s`, "style")}> <!-- Service icon --> <div class="text-4xl mb-4 group-hover:scale-110 transition-transform duration-300"> ${service.icon} </div> <!-- Service title --> <h3 class="text-xl font-display font-semibold text-foreground mb-3"> ${t(service.titleKey)} </h3> <!-- Service description --> <p class="text-muted-foreground mb-4 leading-relaxed"> ${t(service.descriptionKey)} </p> <!-- Service features --> <ul class="space-y-2"> ${service.features.map((feature) => renderTemplate`<li class="flex items-start text-sm text-muted-foreground"> <svg class="h-4 w-4 mt-0.5 mr-2 text-primary flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> </svg> ${t(feature)} </li>`)} </ul> <!-- Learn more link --> <div class="mt-6"> <a${addAttribute(`/services#${service.id}`, "href")} class="inline-flex items-center text-primary hover:text-primary/80 font-medium text-sm group-hover:translate-x-1 transition-all duration-200">
Learn more
<svg class="h-4 w-4 ml-1" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path> </svg> </a> </div> </div>`)} </div> <!-- CTA section --> <div class="text-center animate-on-scroll"> <a href="/services" 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"> ${t("services.viewAll")} <svg class="h-5 w-5 ml-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="M13 7l5 5m0 0l-5 5m5-5H6"></path> </svg> </a> </div> </div> </section>`;
}, "/Users/richard/Website Development/tiber365/src/components/Services.astro", void 0);
const $$Testimonials = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`${maybeRenderHead()}<section class="py-20 bg-background"> <div class="container-custom"> <!-- Section header --> <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"> ${t("testimonials.title")} </h2> <p class="text-lg sm:text-xl text-muted-foreground max-w-3xl mx-auto"> ${t("testimonials.subtitle")} </p> </div> <!-- Testimonials grid --> <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> ${TESTIMONIALS.map((testimonial, index) => renderTemplate`<div class="card p-6 hover:shadow-xl transition-all duration-300 hover:scale-105 animate-on-scroll"${addAttribute(`animation-delay: ${index * 0.1}s`, "style")}> <!-- Star rating --> <div class="flex items-center mb-4"> ${Array.from({ length: testimonial.rating }, (_, i) => renderTemplate`<svg class="h-5 w-5 text-yellow-400 fill-current" viewBox="0 0 20 20"> <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> </svg>`)} </div> <!-- Testimonial content --> <blockquote class="text-muted-foreground mb-6 leading-relaxed italic">
"${t(testimonial.contentKey)}"
</blockquote> <!-- Customer info --> <div class="flex items-center"> <!-- Avatar placeholder --> <div class="w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mr-4"> <svg class="w-6 h-6 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"></path> </svg> </div> <div> <div class="font-semibold text-foreground"> ${t(testimonial.nameKey)} </div> <div class="text-sm text-muted-foreground"> ${t(testimonial.companyKey)} </div> </div> </div> </div>`)} </div> <!-- Additional social proof --> <div class="mt-16 text-center animate-on-scroll"> <div class="grid grid-cols-1 sm:grid-cols-3 gap-8 max-w-3xl mx-auto"> <div class="text-center"> <div class="text-3xl font-bold text-primary mb-2">5+</div> <div class="text-sm text-muted-foreground">${t("about.experience")}</div> </div> <div class="text-center"> <div class="text-3xl font-bold text-primary mb-2">100+</div> <div class="text-sm text-muted-foreground">${t("about.clients")}</div> </div> <div class="text-center"> <div class="text-3xl font-bold text-primary mb-2">200+</div> <div class="text-sm text-muted-foreground">${t("about.projects")}</div> </div> </div> </div> </div> </section>`;
}, "/Users/richard/Website Development/tiber365/src/components/Testimonials.astro", void 0);
const $$Index = createComponent(($$result, $$props, $$slots) => {
changeLanguage("en");
const pageTitle = t("meta.title");
const pageDescription = t("meta.description");
const pageKeywords = t("meta.keywords");
return renderTemplate`${renderComponent($$result, "BaseLayout", $$BaseLayout, { "title": pageTitle, "description": pageDescription, "keywords": pageKeywords }, { "default": ($$result2) => renderTemplate` ${renderComponent($$result2, "Header", $$Header, {})} ${maybeRenderHead()}<main> ${renderComponent($$result2, "Hero", $$Hero, {})} ${renderComponent($$result2, "Services", $$Services, {})} ${renderComponent($$result2, "Testimonials", $$Testimonials, {})} ${renderComponent($$result2, "CTA", $$CTA, {})} </main> ${renderComponent($$result2, "Footer", $$Footer, {})} ` })}`;
}, "/Users/richard/Website Development/tiber365/src/pages/index.astro", void 0);
const $$file = "/Users/richard/Website Development/tiber365/src/pages/index.astro";
const $$url = "";
const _page = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
__proto__: null,
default: $$Index,
file: $$file,
url: $$url
}, Symbol.toStringTag, { value: 'Module' }));
const page = () => _page;
export { page };

View File

@@ -1,32 +0,0 @@
import '../chunks/page-ssr_ChKiSmuh.mjs';
import { c as createComponent, r as renderComponent, a as renderTemplate, m as maybeRenderHead } from '../chunks/astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
export { renderers } from '../renderers.mjs';
const $$Index = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`import ${changeLanguage} from "i18next";
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";
changeLanguage("it");
${renderComponent($$result, "BaseLayout", BaseLayout, {}, { "default": ($$result2) => renderTemplate` ${renderComponent($$result2, "Header", Header, {})} ${maybeRenderHead()}<main> ${renderComponent($$result2, "Hero", Hero, {})} ${renderComponent($$result2, "Services", Services, {})} ${renderComponent($$result2, "Testimonials", Testimonials, {})} ${renderComponent($$result2, "CTA", CTA, {})} </main> ${renderComponent($$result2, "Footer", Footer, {})} ` })}`;
}, "/Users/richard/Website Development/tiber365/src/pages/it/index.astro", void 0);
const $$file = "/Users/richard/Website Development/tiber365/src/pages/it/index.astro";
const $$url = "/it";
const _page = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
__proto__: null,
default: $$Index,
file: $$file,
url: $$url
}, Symbol.toStringTag, { value: 'Module' }));
const page = () => _page;
export { page };

View File

@@ -1,28 +0,0 @@
import '../../chunks/page-ssr_ChKiSmuh.mjs';
import { c as createComponent, r as renderComponent, a as renderTemplate, m as maybeRenderHead } from '../../chunks/astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
export { renderers } from '../../renderers.mjs';
const $$About = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`import ${changeLanguage} from "i18next";
import BaseLayout from "../../layouts/BaseLayout.astro";
import Header from "../../components/Header.astro";
import Footer from "../../components/Footer.astro";
changeLanguage("it");
${renderComponent($$result, "BaseLayout", BaseLayout, {}, { "default": ($$result2) => renderTemplate` ${renderComponent($$result2, "Header", Header, {})} ${maybeRenderHead()}<main> <section class="py-20"> <div class="container-custom"> <h1>Chi Siamo</h1> <!-- Add about page content --> </div> </section> </main> ${renderComponent($$result2, "Footer", Footer, {})} ` })}`;
}, "/Users/richard/Website Development/tiber365/src/pages/it/about.astro", void 0);
const $$file = "/Users/richard/Website Development/tiber365/src/pages/it/about.astro";
const $$url = "/it/about";
const _page = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
__proto__: null,
default: $$About,
file: $$file,
url: $$url
}, Symbol.toStringTag, { value: 'Module' }));
const page = () => _page;
export { page };

View File

@@ -1,32 +0,0 @@
import '../chunks/page-ssr_ChKiSmuh.mjs';
import { c as createComponent, r as renderComponent, a as renderTemplate, m as maybeRenderHead } from '../chunks/astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
export { renderers } from '../renderers.mjs';
const $$Index = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`import ${changeLanguage} from "i18next";
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";
changeLanguage("nl");
${renderComponent($$result, "BaseLayout", BaseLayout, {}, { "default": ($$result2) => renderTemplate` ${renderComponent($$result2, "Header", Header, {})} ${maybeRenderHead()}<main> ${renderComponent($$result2, "Hero", Hero, {})} ${renderComponent($$result2, "Services", Services, {})} ${renderComponent($$result2, "Testimonials", Testimonials, {})} ${renderComponent($$result2, "CTA", CTA, {})} </main> ${renderComponent($$result2, "Footer", Footer, {})} ` })}`;
}, "/Users/richard/Website Development/tiber365/src/pages/nl/index.astro", void 0);
const $$file = "/Users/richard/Website Development/tiber365/src/pages/nl/index.astro";
const $$url = "/nl";
const _page = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
__proto__: null,
default: $$Index,
file: $$file,
url: $$url
}, Symbol.toStringTag, { value: 'Module' }));
const page = () => _page;
export { page };

View File

@@ -1,28 +0,0 @@
import '../../chunks/page-ssr_ChKiSmuh.mjs';
import { c as createComponent, r as renderComponent, a as renderTemplate, m as maybeRenderHead } from '../../chunks/astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
export { renderers } from '../../renderers.mjs';
const $$About = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`import ${changeLanguage} from "i18next";
import BaseLayout from "../../layouts/BaseLayout.astro";
import Header from "../../components/Header.astro";
import Footer from "../../components/Footer.astro";
changeLanguage("nl");
${renderComponent($$result, "BaseLayout", BaseLayout, {}, { "default": ($$result2) => renderTemplate` ${renderComponent($$result2, "Header", Header, {})} ${maybeRenderHead()}<main> <section class="py-20"> <div class="container-custom"> <h1>Over Ons</h1> <!-- Add about page content --> </div> </section> </main> ${renderComponent($$result2, "Footer", Footer, {})} ` })}`;
}, "/Users/richard/Website Development/tiber365/src/pages/nl/about.astro", void 0);
const $$file = "/Users/richard/Website Development/tiber365/src/pages/nl/about.astro";
const $$url = "/nl/about";
const _page = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
__proto__: null,
default: $$About,
file: $$file,
url: $$url
}, Symbol.toStringTag, { value: 'Module' }));
const page = () => _page;
export { page };

View File

@@ -1,52 +0,0 @@
import '../chunks/page-ssr_ChKiSmuh.mjs';
import { c as createComponent, r as renderComponent, a as renderTemplate, m as maybeRenderHead } from '../chunks/astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
import { t, $ as $$BaseLayout, a as $$Header, b as $$Footer } from '../chunks/Footer_BFBz0LQo.mjs';
export { renderers } from '../renderers.mjs';
const $$Privacy = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`${renderComponent($$result, "BaseLayout", $$BaseLayout, { "title": `${t("footer.links.privacy")} | ${t("meta.title")}`, "description": "Privacy Policy for Tiber365 - Learn how we collect, use, and protect your personal data in compliance with GDPR and Dutch privacy laws." }, { "default": ($$result2) => renderTemplate` ${renderComponent($$result2, "Header", $$Header, {})} ${maybeRenderHead()}<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")}</h1> <div class="mb-8 text-sm text-muted-foreground">
Last updated: ${(/* @__PURE__ */ new Date()).toLocaleDateString()} </div> <section class="mb-12"> <h2>1. Introduction</h2> <p>
Tiber365 ("we", "our", or "us") is committed to protecting your privacy and personal data. This Privacy Policy explains how we collect, use, and protect your personal information in accordance with the General Data Protection Regulation (GDPR) and Dutch privacy laws.
</p> </section> <section class="mb-12"> <h2>2. Data Controller</h2> <p>
Tiber365<br>
Italy<br>
Email: info@tiber365.it
</p> <p>
For privacy-related inquiries, you can contact our Data Protection Officer at privacy@tiber365.it.
</p> </section> <section class="mb-12"> <h2>3. Personal Data We Collect</h2> <p>We collect and process the following types of personal data:</p> <ul> <li>Contact information (name, email, phone number, company name)</li> <li>Technical data (IP address, browser type, device information)</li> <li>Usage data (how you interact with our website and services)</li> <li>Communication data (messages you send us through our contact form)</li> <li>Service data (information related to the IT services we provide)</li> </ul> </section> <section class="mb-12"> <h2>4. Legal Basis for Processing</h2> <p>We process your personal data based on the following legal grounds:</p> <ul> <li>Contract performance (when providing our IT services)</li> <li>Legal obligations (compliance with Dutch and EU laws)</li> <li>Legitimate interests (improving our services and communication)</li> <li>Consent (for marketing communications and cookies)</li> </ul> </section> <section class="mb-12"> <h2>5. How We Use Your Data</h2> <p>We use your personal data for:</p> <ul> <li>Providing and managing our IT services</li> <li>Communicating with you about our services</li> <li>Improving our website and services</li> <li>Complying with legal obligations</li> <li>Sending you marketing communications (with your consent)</li> </ul> </section> <section class="mb-12"> <h2>6. Data Sharing and Transfers</h2> <p>
We may share your data with:
</p> <ul> <li>Service providers (hosting, email, analytics)</li> <li>Professional advisers (lawyers, accountants)</li> <li>Authorities (when legally required)</li> </ul> <p>
Data transfers outside the EU/EEA are protected by appropriate safeguards (Standard Contractual Clauses).
</p> </section> <section class="mb-12"> <h2>7. Data Retention</h2> <p>
We retain your personal data only for as long as necessary to fulfill the purposes for which it was collected, including legal requirements and accounting purposes.
</p> </section> <section class="mb-12"> <h2>8. Your Rights</h2> <p>Under GDPR and Dutch privacy laws, you have the right to:</p> <ul> <li>Access your personal data</li> <li>Correct inaccurate data</li> <li>Request deletion of your data</li> <li>Object to processing</li> <li>Data portability</li> <li>Withdraw consent</li> </ul> <p>
To exercise these rights, contact us at privacy@tiber365.it. We'll respond within 30 days.
</p> </section> <section class="mb-12"> <h2>9. Cookies and Tracking</h2> <p>
We use cookies and similar technologies to improve your browsing experience. You can manage cookie preferences through your browser settings.
</p> </section> <section class="mb-12"> <h2>10. Security</h2> <p>
We implement appropriate technical and organizational measures to protect your personal data against unauthorized access, alteration, disclosure, or destruction.
</p> </section> <section class="mb-12"> <h2>11. Changes to This Policy</h2> <p>
We may update this Privacy Policy periodically. We will notify you of any material changes by posting the new policy on this page.
</p> </section> <section class="mb-12"> <h2>12. Complaints</h2> <p>
If you have concerns about how we process your personal data, please contact us first. You also have the right to file a complaint with the Dutch Data Protection Authority (Autoriteit Persoonsgegevens).
</p> </section> <section class="mb-12"> <h2>13. Contact Us</h2> <p>
For any privacy-related questions or requests, please contact us at:<br>
Email: privacy@tiber365.it<br>
Phone: +39 123 456 7890
</p> </section> </article> </div> </main> ${renderComponent($$result2, "Footer", $$Footer, {})} ` })}`;
}, "/Users/richard/Website Development/tiber365/src/pages/privacy.astro", void 0);
const $$file = "/Users/richard/Website Development/tiber365/src/pages/privacy.astro";
const $$url = "/privacy";
const _page = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
__proto__: null,
default: $$Privacy,
file: $$file,
url: $$url
}, Symbol.toStringTag, { value: 'Module' }));
const page = () => _page;
export { page };

View File

@@ -1,134 +0,0 @@
import '../chunks/page-ssr_ChKiSmuh.mjs';
import { c as createComponent, r as renderComponent, a as renderTemplate, m as maybeRenderHead, b as addAttribute } from '../chunks/astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
import { t, $ as $$BaseLayout, S as SERVICES, a as $$Header, b as $$Footer } from '../chunks/Footer_BFBz0LQo.mjs';
import { $ as $$CTA } from '../chunks/CTA_CIVpts3M.mjs';
export { renderers } from '../renderers.mjs';
const $$Services = createComponent(($$result, $$props, $$slots) => {
const getServiceDetails = (serviceId) => {
switch (serviceId) {
case "microsoft365":
return {
benefits: [
"Seamless transition to Microsoft 365 with expert guidance",
"Zero downtime email migrations and data transfer",
"Custom configuration of all Office applications",
"Enhanced team collaboration through Microsoft Teams",
"Secure document management with SharePoint",
"Streamlined admin center management"
],
process: [
"Initial assessment of your current setup",
"Custom migration plan development",
"Step-by-step implementation",
"User training and support",
"Ongoing maintenance and optimization"
]
};
case "management":
return {
benefits: [
"Proactive system monitoring and maintenance",
"Automated workflow implementation",
"Enhanced security and compliance",
"Regular performance optimization",
"Cost-effective resource utilization",
"Reduced IT management overhead"
],
process: [
"Environment assessment",
"Automation opportunity identification",
"Monitoring setup and configuration",
"Regular maintenance scheduling",
"Continuous improvement implementation"
]
};
case "networking":
return {
benefits: [
"Enterprise-grade network infrastructure",
"High-performance Ubiquiti/UniFi solutions",
"Advanced security implementation",
"Reliable and fast connectivity",
"Scalable network architecture",
"Professional network monitoring"
],
process: [
"Network requirements analysis",
"Infrastructure design and planning",
"Equipment selection and deployment",
"Security implementation",
"Performance optimization"
]
};
case "hosting":
return {
benefits: [
"High-performance web hosting",
"Secure and reliable infrastructure",
"Automated backup systems",
"SSL certificate management",
"Domain name administration",
"Regular maintenance and updates"
],
process: [
"Hosting requirements assessment",
"Server configuration and setup",
"Security implementation",
"Backup system configuration",
"Ongoing monitoring and maintenance"
]
};
case "custom":
return {
benefits: [
"Flexible solutions tailored to your unique business needs",
"Professional project management and documentation",
"Clear communication and consultation throughout the process",
"Integration with existing systems and workflows",
"Scalable and future-proof implementations",
"Support for requirements beyond our standard services"
],
process: [
"Initial consultation and requirements gathering",
"Feasibility study and stakeholder alignment",
"Detailed project planning with all involved parties",
"Phased implementation with regular checkpoints",
"Thorough testing and quality assurance",
"Post-implementation support and maintenance"
],
additionalInfo: `While we offer standardized services for common IT needs, we understand that every business is unique. We're open to discussing and supporting custom IT projects that may fall outside our standard service offerings. Our professional approach ensures that all stakeholders are involved in the consultation, planning, and implementation phases. This collaborative process helps us deliver solutions that truly meet your specific requirements.`
};
default:
return {
benefits: [],
process: []
};
}
};
return renderTemplate`${renderComponent($$result, "BaseLayout", $$BaseLayout, { "title": `${t("nav.services")} | ${t("meta.title")}`, "description": "Comprehensive IT services for small businesses: Microsoft 365 support, networking solutions, web hosting, and custom IT projects." }, { "default": ($$result2) => renderTemplate` ${renderComponent($$result2, "Header", $$Header, {})} ${maybeRenderHead()}<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")} </h1> <p class="text-lg sm:text-xl text-muted-foreground leading-relaxed"> ${t("services.subtitle")} </p> </div> </div> </section> <!-- Detailed Services --> <section class="py-20 bg-background"> <div class="container-custom"> <div class="space-y-32"> ${SERVICES.map((service, index) => {
const details = getServiceDetails(service.id);
return renderTemplate`<div${addAttribute(service.id, "id")}${addAttribute(`grid grid-cols-1 lg:grid-cols-2 gap-12 items-start animate-on-scroll ${index % 2 === 1 ? "lg:grid-flow-col-reverse" : ""}`, "class")}> <!-- Service content - Left side --> <div> <div class="text-5xl mb-4">${service.icon}</div> <h2 class="text-3xl sm:text-4xl font-display font-bold text-foreground mb-4"> ${t(service.titleKey)} </h2> <p class="text-lg text-muted-foreground mb-8 leading-relaxed"> ${t(service.descriptionKey)} </p> ${service.id === "custom" && renderTemplate`<div class="mb-8 p-4 bg-primary/5 rounded-lg border border-primary/10"> <p class="text-muted-foreground leading-relaxed"> ${details.additionalInfo} </p> </div>`} <!-- Key Benefits --> <div class="mb-8"> <h3 class="text-xl font-semibold text-foreground mb-4">Key Benefits</h3> <ul class="space-y-3"> ${details.benefits.map((benefit) => renderTemplate`<li class="flex items-start"> <svg class="h-5 w-5 mt-1 mr-3 text-primary flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> </svg> <span class="text-foreground">${benefit}</span> </li>`)} </ul> </div> <!-- Our Process --> <div class="mb-8"> <h3 class="text-xl font-semibold text-foreground mb-4">Our Process</h3> <ul class="space-y-3"> ${details.process.map((step, stepIndex) => renderTemplate`<li class="flex items-start"> <div class="flex-shrink-0 h-6 w-6 rounded-full bg-primary/10 text-primary flex items-center justify-center mr-3 mt-0.5"> ${stepIndex + 1} </div> <span class="text-foreground">${step}</span> </li>`)} </ul> </div> <!-- CTA button --> <a href="/contact" class="btn-primary px-6 py-3 rounded-lg inline-flex items-center group">
Get Started
<svg class="h-4 w-4 ml-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="M9 5l7 7-7 7"></path> </svg> </a> </div> <!-- Service features - Right side --> <div class="card p-8 bg-gradient-to-br from-primary/5 via-primary/10 to-secondary/5"> <div class="space-y-6"> <div class="text-center mb-8"> <div class="text-6xl mb-4 opacity-20">${service.icon}</div> <h3 class="text-xl font-semibold text-foreground">Features & Capabilities</h3> </div> ${service.features.map((feature) => renderTemplate`<div class="bg-background/50 rounded-lg p-4"> <div class="flex items-start"> <svg class="h-5 w-5 mt-0.5 mr-3 text-primary flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> </svg> <div> <h4 class="font-medium text-foreground mb-1">${t(feature)}</h4> <p class="text-sm text-muted-foreground"> ${feature.includes("migrations") && "Seamless data transfer with zero downtime"} ${feature.includes("apps") && "Full setup and optimization of Office applications"} ${feature.includes("teams") && "Custom Teams environment configuration"} ${feature.includes("sharepoint") && "Document management and collaboration setup"} ${feature.includes("admin") && "Complete admin portal configuration"} ${feature.includes("automation") && "Custom workflow automation solutions"} ${feature.includes("monitoring") && "Proactive system monitoring and alerts"} ${feature.includes("maintenance") && "Regular updates and maintenance tasks"} ${feature.includes("optimization") && "Performance tuning and improvements"} ${feature.includes("ubiquiti") && "Expert Ubiquiti/UniFi implementation"} ${feature.includes("infrastructure") && "Enterprise-grade network setup"} ${feature.includes("security") && "Advanced security measures"} ${feature.includes("webhosting") && "High-performance hosting solutions"} ${feature.includes("domains") && "Complete domain management"} ${feature.includes("ssl") && "SSL certificate installation and renewal"} ${feature.includes("backup") && "Automated backup and recovery"} </p> </div> </div> </div>`)} </div> </div> </div>`;
})} </div> </div> </section> <!-- Why Choose Us --> <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">
Why Choose Tiber365?
</h2> <p class="text-lg sm:text-xl text-muted-foreground max-w-3xl mx-auto">
We're dedicated to providing reliable, professional IT services that help your business thrive.
</p> </div> <div class="grid grid-cols-1 md: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">Fast Response</h3> <p class="text-muted-foreground">Quick turnaround times and 24/7 support when you need it most.</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">Expert Knowledge</h3> <p class="text-muted-foreground">Years of experience with Microsoft 365, networking, and modern IT solutions.</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">Business Focus</h3> <p class="text-muted-foreground">We understand small business needs and provide cost-effective solutions.</p> </div> </div> </div> </section> ${renderComponent($$result2, "CTA", $$CTA, {})} </main> ${renderComponent($$result2, "Footer", $$Footer, {})} ` })}`;
}, "/Users/richard/Website Development/tiber365/src/pages/services.astro", void 0);
const $$file = "/Users/richard/Website Development/tiber365/src/pages/services.astro";
const $$url = "/services";
const _page = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
__proto__: null,
default: $$Services,
file: $$file,
url: $$url
}, Symbol.toStringTag, { value: 'Module' }));
const page = () => _page;
export { page };

View File

@@ -1,59 +0,0 @@
import '../chunks/page-ssr_ChKiSmuh.mjs';
import { c as createComponent, r as renderComponent, a as renderTemplate, m as maybeRenderHead } from '../chunks/astro/server_DJC9Xx9K.mjs';
import 'kleur/colors';
import { t, $ as $$BaseLayout, a as $$Header, b as $$Footer } from '../chunks/Footer_BFBz0LQo.mjs';
export { renderers } from '../renderers.mjs';
const $$Terms = createComponent(($$result, $$props, $$slots) => {
return renderTemplate`${renderComponent($$result, "BaseLayout", $$BaseLayout, { "title": `${t("footer.links.terms")} | ${t("meta.title")}`, "description": "Terms of Service for Tiber365 - Understanding our service agreement and legal terms in compliance with European and Dutch laws." }, { "default": ($$result2) => renderTemplate` ${renderComponent($$result2, "Header", $$Header, {})} ${maybeRenderHead()}<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")}</h1> <div class="mb-8 text-sm text-muted-foreground">
Last updated: ${(/* @__PURE__ */ new Date()).toLocaleDateString()} </div> <section class="mb-12"> <h2>1. Introduction</h2> <p>
These Terms of Service ("Terms") govern your use of Tiber365's website and services. By accessing our website or using our services, you agree to be bound by these Terms. If you disagree with any part of these terms, please do not use our services.
</p> </section> <section class="mb-12"> <h2>2. Company Information</h2> <p>
Tiber365<br>
Registered in Italy<br>
Email: info@tiber365.it<br>
Phone: +39 123 456 7890
</p> </section> <section class="mb-12"> <h2>3. Services</h2> <p>
We provide IT services including:
</p> <ul> <li>Microsoft 365 support and management</li> <li>Networking and infrastructure solutions</li> <li>Web hosting and management</li> <li>Custom IT projects</li> </ul> <p>
Service specifics will be detailed in individual service agreements.
</p> </section> <section class="mb-12"> <h2>4. Service Agreement</h2> <p>
Upon engaging our services:
</p> <ul> <li>We will provide services as specified in the service agreement</li> <li>You agree to provide necessary information and access for service delivery</li> <li>You will maintain the confidentiality of any access credentials provided</li> <li>You will use the services in compliance with applicable laws</li> </ul> </section> <section class="mb-12"> <h2>5. Intellectual Property</h2> <p>
All content on our website and services, including but not limited to text, graphics, logos, and software, is our property or that of our licensors and is protected by intellectual property laws.
</p> </section> <section class="mb-12"> <h2>6. User Obligations</h2> <p>You agree to:</p> <ul> <li>Provide accurate and complete information</li> <li>Maintain the security of your account</li> <li>Not use our services for illegal purposes</li> <li>Not interfere with the proper functioning of our services</li> <li>Comply with all applicable laws and regulations</li> </ul> </section> <section class="mb-12"> <h2>7. Payment Terms</h2> <p>
Payment terms, including fees, billing cycles, and payment methods, will be specified in your service agreement. Late payments may result in service suspension.
</p> </section> <section class="mb-12"> <h2>8. Liability</h2> <p>
To the extent permitted by law:
</p> <ul> <li>We provide services "as is" without warranties</li> <li>We are not liable for indirect, consequential, or incidental damages</li> <li>Our liability is limited to the amount paid for services in the previous 12 months</li> </ul> </section> <section class="mb-12"> <h2>9. Data Protection</h2> <p>
We process personal data in accordance with our Privacy Policy and applicable data protection laws (GDPR and Dutch privacy laws).
</p> </section> <section class="mb-12"> <h2>10. Service Availability</h2> <p>
While we strive for high availability, we do not guarantee uninterrupted service. We will provide notice of scheduled maintenance when possible.
</p> </section> <section class="mb-12"> <h2>11. Termination</h2> <p>
Either party may terminate services according to the terms in the service agreement. Upon termination:
</p> <ul> <li>All access to services will cease</li> <li>You remain liable for any outstanding payments</li> <li>We will assist with data transition as specified in the service agreement</li> </ul> </section> <section class="mb-12"> <h2>12. Changes to Terms</h2> <p>
We may modify these Terms at any time. Continued use of our services after changes constitutes acceptance of the modified Terms.
</p> </section> <section class="mb-12"> <h2>13. Governing Law</h2> <p>
These Terms are governed by Dutch law. Any disputes will be subject to the exclusive jurisdiction of the Dutch courts.
</p> </section> <section class="mb-12"> <h2>14. Severability</h2> <p>
If any provision of these Terms is found to be unenforceable, the remaining provisions will remain in effect.
</p> </section> <section class="mb-12"> <h2>15. Contact</h2> <p>
For questions about these Terms, please contact us at:<br>
Email: legal@tiber365.it<br>
Phone: +39 123 456 7890
</p> </section> </article> </div> </main> ${renderComponent($$result2, "Footer", $$Footer, {})} ` })}`;
}, "/Users/richard/Website Development/tiber365/src/pages/terms.astro", void 0);
const $$file = "/Users/richard/Website Development/tiber365/src/pages/terms.astro";
const $$url = "/terms";
const _page = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
__proto__: null,
default: $$Terms,
file: $$file,
url: $$url
}, Symbol.toStringTag, { value: 'Module' }));
const page = () => _page;
export { page };

3
dist/renderers.mjs vendored
View File

@@ -1,3 +0,0 @@
const renderers = [];
export { renderers };

22
dist/robots.txt vendored
View File

@@ -1,17 +1,25 @@
User-agent: * User-agent: *
Allow: / Allow: /
# Allow all language pages
Allow: /en/
Allow: /nl/
Allow: /de/
Allow: /fr/
# Allow all main pages
Allow: /services Allow: /services
Allow: /about Allow: /about
Allow: /contact Allow: /contact
Allow: /404 Allow: /blog
Allow: /privacy
Allow: /terms
# Allow static assets
Allow: /favicon.svg Allow: /favicon.svg
Allow: /manifest.json Allow: /manifest.json
Disallow: /en Allow: /images/
Disallow: /en/ Allow: /locales/
Disallow: /nl
Disallow: /nl/
Disallow: /it
Disallow: /it/
# Sitemap # Sitemap
Sitemap: https://tiber365.it/sitemap.xml Sitemap: https://tiber365.it/sitemap.xml

20
dist/services/index.html vendored Normal file

File diff suppressed because one or more lines are too long

356
dist/sitemap.xml vendored Normal file
View File

@@ -0,0 +1,356 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://tiber365.it</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr" />
</url>
<url>
<loc>https://tiber365.it/nl</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr" />
</url>
<url>
<loc>https://tiber365.it/de</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr" />
</url>
<url>
<loc>https://tiber365.it/fr</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr" />
</url>
<url>
<loc>https://tiber365.it/about</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/about" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/about" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/about" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/about" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/about" />
</url>
<url>
<loc>https://tiber365.it/nl/about</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/about" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/about" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/about" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/about" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/about" />
</url>
<url>
<loc>https://tiber365.it/de/about</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/about" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/about" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/about" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/about" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/about" />
</url>
<url>
<loc>https://tiber365.it/fr/about</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/about" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/about" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/about" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/about" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/about" />
</url>
<url>
<loc>https://tiber365.it/contact</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/contact" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/contact" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/contact" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/contact" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/contact" />
</url>
<url>
<loc>https://tiber365.it/nl/contact</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/contact" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/contact" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/contact" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/contact" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/contact" />
</url>
<url>
<loc>https://tiber365.it/de/contact</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/contact" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/contact" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/contact" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/contact" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/contact" />
</url>
<url>
<loc>https://tiber365.it/fr/contact</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/contact" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/contact" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/contact" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/contact" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/contact" />
</url>
<url>
<loc>https://tiber365.it/services</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/services" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/services" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/services" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/services" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/services" />
</url>
<url>
<loc>https://tiber365.it/nl/services</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/services" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/services" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/services" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/services" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/services" />
</url>
<url>
<loc>https://tiber365.it/de/services</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/services" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/services" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/services" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/services" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/services" />
</url>
<url>
<loc>https://tiber365.it/fr/services</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/services" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/services" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/services" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/services" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/services" />
</url>
<url>
<loc>https://tiber365.it/blog</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/blog" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/blog" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/blog" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/blog" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/blog" />
</url>
<url>
<loc>https://tiber365.it/nl/blog</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/blog" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/blog" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/blog" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/blog" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/blog" />
</url>
<url>
<loc>https://tiber365.it/de/blog</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/blog" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/blog" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/blog" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/blog" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/blog" />
</url>
<url>
<loc>https://tiber365.it/fr/blog</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/blog" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/blog" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/blog" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/blog" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/blog" />
</url>
<url>
<loc>https://tiber365.it/privacy</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/privacy" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/privacy" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/privacy" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/privacy" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/privacy" />
</url>
<url>
<loc>https://tiber365.it/nl/privacy</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/privacy" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/privacy" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/privacy" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/privacy" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/privacy" />
</url>
<url>
<loc>https://tiber365.it/de/privacy</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/privacy" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/privacy" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/privacy" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/privacy" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/privacy" />
</url>
<url>
<loc>https://tiber365.it/fr/privacy</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/privacy" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/privacy" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/privacy" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/privacy" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/privacy" />
</url>
<url>
<loc>https://tiber365.it/terms</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/terms" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/terms" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/terms" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/terms" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/terms" />
</url>
<url>
<loc>https://tiber365.it/nl/terms</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/terms" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/terms" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/terms" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/terms" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/terms" />
</url>
<url>
<loc>https://tiber365.it/de/terms</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/terms" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/terms" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/terms" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/terms" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/terms" />
</url>
<url>
<loc>https://tiber365.it/fr/terms</loc>
<lastmod>2025-07-24</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/terms" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/terms" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/terms" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/terms" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/terms" />
</url>
<url>
<loc>https://tiber365.it/en/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity</loc>
<lastmod>2025-06-19</lastmod>
<changefreq>monthly</changefreq>
<priority>0.6</priority>
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/en/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/en/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
</url>
<url>
<loc>https://tiber365.it/nl/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity</loc>
<lastmod>2025-06-19</lastmod>
<changefreq>monthly</changefreq>
<priority>0.6</priority>
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/en/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
</url>
<url>
<loc>https://tiber365.it/de/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity</loc>
<lastmod>2025-06-19</lastmod>
<changefreq>monthly</changefreq>
<priority>0.6</priority>
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/en/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
</url>
<url>
<loc>https://tiber365.it/fr/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity</loc>
<lastmod>2025-06-19</lastmod>
<changefreq>monthly</changefreq>
<priority>0.6</priority>
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="en" href="https://tiber365.it/en/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="nl" href="https://tiber365.it/nl/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="de" href="https://tiber365.it/de/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
<xhtml:link rel="alternate" hreflang="fr" href="https://tiber365.it/fr/blog/microsoft-copilot-office-365-revolutionary-ai-features-transforming-workplace-productivity" />
</url>
</urlset>

55
dist/sw.js vendored Normal file
View File

@@ -0,0 +1,55 @@
const CACHE_NAME = 'tiber365-v1';
const urlsToCache = [
'/',
'/en/',
'/nl/',
'/de/',
'/fr/',
'/en/about',
'/nl/about',
'/de/about',
'/fr/about',
'/en/contact',
'/nl/contact',
'/de/contact',
'/fr/contact',
'/services',
'/blog',
'/favicon.svg',
'/manifest.json',
'/images/TIBER365.png'
];
// Install event
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(CACHE_NAME)
.then((cache) => cache.addAll(urlsToCache))
);
});
// Fetch event
self.addEventListener('fetch', (event) => {
event.respondWith(
caches.match(event.request)
.then((response) => {
// Return cached version or fetch from network
return response || fetch(event.request);
})
);
});
// Activate event
self.addEventListener('activate', (event) => {
event.waitUntil(
caches.keys().then((cacheNames) => {
return Promise.all(
cacheNames.map((cacheName) => {
if (cacheName !== CACHE_NAME) {
return caches.delete(cacheName);
}
})
);
})
);
});

28
localhost-key.pem Normal file
View File

@@ -0,0 +1,28 @@
-----BEGIN PRIVATE KEY-----
MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQC+RnssxQ1GKXKi
1ATlc95dedveWjcS8Z72mHrgdZnO2+Aacntqz/l+Rzc070FeIoW4P3/lAmWXX8Is
h5V8HBDxuD4kn6g8DXglskLWAi6uBCo7RT6gGbPKHonJ1lD+NIy3WrdM3vgMwP9y
TAs4pw1nE3quCFLR681MJg9wpgUqyG7NahkphMz/8b6/PXOlnM92Ep4XUtGD1AKA
YIyYaZTU/nRsMx5KflNQtcRZl2J0BxpcMTwhuHtP+LUuixi0pHlj7tLH6hIUjseS
3Lt3tmZFRwQKQaP6p//aMcP7xC25C/UxrcMlNwLpxt3jwIo23QSUDyNy3P8r0jZT
sQnwp4wPAgMBAAECggEBALoKE7ksWdQ2Bl3qS3dFmS9wTGfVcW/WSwT1BX+dvGsj
VLTHJqDDBEBRxUq+e/1cZ75EZ/o0I7yj5ii/0IruriqJaElKyaUdzlGdP/gbXiTK
8bfN9nN3bfC7dyGfqMVEACnuSragc4uU0K6iZ35W56XWx+aNQNz7X1mLBSGxUfAH
JORjJrXOsWmwLGYabUv8vNmBrtC99yhjcHZvHDGbrMd+azLiK0cFdA3R6fVIdmWm
8h//nYj82Vy6theGi5kXQsbQIga9AJBc5u7HcCAzazy8pytb7KJd3N0mNEgyu3OR
f3fjFgtUIW+fs9RBSDblutfu573I1p3y8TKB4mWWroECgYEA6kA8xg0k1MbrpgD3
Cw4AbhnOcbPPeAkdlMcMAMzqgTQ1IGACB+9VByWZFjxphIsw2FCKc2202AF+GX2Z
LI/Qvm47FbhLR5+AKZLRJePBiYJor85BkV0PH8Yfsw1JtPvNPy7v+Ect6gLusVKp
dkEr/vT3jSfUknxdy+dI4YhTwa8CgYEAz/ED5AjNFnbgyi6RHrJWkOjUMEc9jAhG
EO78kBMnUW2Wihi3Cx32AwEltcOM+/PTgJLS5GEIp4bwFfD134VMTcvoznXX9Lpw
TQtLR29EXBXdH3Vp97orGaTp7OLI24WKgqz82AibYUM1EjDqOADKScecnDojoTnn
XfX6l32BU6ECgYEAgOBGj0+767RlATeWsuZJJkncYoHiqs+ZDrlTyTzz55GpiN5J
P8RUq1HsH2etRdauUNQ+17KLxCtODQgktXeKCLrsls6F3CnMgRLdLlNXryeoINEB
EdB4+aou1nuBCalfClvwek/u2sgyOiyYPw8r/WEYsPgw40a48+2TE0HFktECgYBX
Ui3BF9UP5vH01WNJkbh6d9uLPo9g+6R4vfM/iVuMfUmnSkOrnnRNxLCSSMEumLCr
oHyBPSJGP4sYm6yUpcRqMwPbl28NrTE1mVWOdPIu/VtzN3o9dmddCHzXZlDUppqI
z54KFmsxh+iEcBgbVnGcU/+3N075CHjZY09NSH4DoQKBgQC1iSNkwD1NWSbTfZ5T
z0upVbu9H7P0OWu2tEECQ/WRP289mJW88l7N1BSPFriRYyQgArHCzNhaznbHgXel
sNz1MhXy5ddc67ktn4xeqY1xYa8/CqdcWUUGG0ZstqFj1ykFYvV5weBJfPFBswBx
3OJYNyTLPyN93KVtUxziT7m2Qw==
-----END PRIVATE KEY-----

27
localhost.pem Normal file
View File

@@ -0,0 +1,27 @@
-----BEGIN CERTIFICATE-----
MIIEjDCCAvSgAwIBAgIRAN8CEPoAyL2wI1BpkC/XJ88wDQYJKoZIhvcNAQELBQAw
gbMxHjAcBgNVBAoTFW1rY2VydCBkZXZlbG9wbWVudCBDQTFEMEIGA1UECww7cmlj
aGFyZGJlcmdzbWFAUmljaGFyZHMtTWFjQm9vay1BaXIubG9jYWwgKFJpY2hhcmQg
QmVyZ3NtYSkxSzBJBgNVBAMMQm1rY2VydCByaWNoYXJkYmVyZ3NtYUBSaWNoYXJk
cy1NYWNCb29rLUFpci5sb2NhbCAoUmljaGFyZCBCZXJnc21hKTAeFw0yNTA3MjQx
NTU1NTlaFw0yNzEwMjQxNTU1NTlaMG8xJzAlBgNVBAoTHm1rY2VydCBkZXZlbG9w
bWVudCBjZXJ0aWZpY2F0ZTFEMEIGA1UECww7cmljaGFyZGJlcmdzbWFAUmljaGFy
ZHMtTWFjQm9vay1BaXIubG9jYWwgKFJpY2hhcmQgQmVyZ3NtYSkwggEiMA0GCSqG
SIb3DQEBAQUAA4IBDwAwggEKAoIBAQC+RnssxQ1GKXKi1ATlc95dedveWjcS8Z72
mHrgdZnO2+Aacntqz/l+Rzc070FeIoW4P3/lAmWXX8Ish5V8HBDxuD4kn6g8DXgl
skLWAi6uBCo7RT6gGbPKHonJ1lD+NIy3WrdM3vgMwP9yTAs4pw1nE3quCFLR681M
Jg9wpgUqyG7NahkphMz/8b6/PXOlnM92Ep4XUtGD1AKAYIyYaZTU/nRsMx5KflNQ
tcRZl2J0BxpcMTwhuHtP+LUuixi0pHlj7tLH6hIUjseS3Lt3tmZFRwQKQaP6p//a
McP7xC25C/UxrcMlNwLpxt3jwIo23QSUDyNy3P8r0jZTsQnwp4wPAgMBAAGjXjBc
MA4GA1UdDwEB/wQEAwIFoDATBgNVHSUEDDAKBggrBgEFBQcDATAfBgNVHSMEGDAW
gBStewabXmkK5IVSz9/ltHeAgX7JHDAUBgNVHREEDTALgglsb2NhbGhvc3QwDQYJ
KoZIhvcNAQELBQADggGBAIfTgIouy0dfE9wPFu7mM81xpKBIvxP2W5vZtA1EErTl
SHlUq/zVWpFOVDRyl+alo8Wl6a1lEe0+5+RnsMk4utVhSRnk55JBt8Tnc/2Y7P69
800wRlQhOSuOuAYouhAlYEM8LNemxk891WgKHXawSylFSusxXuYEgS1EP1rrCCZr
5DuXh2f8ryp1Uc+7uIgF2aRggn234MoTATpIpmO5J6W80mfomLU3hNFfyta3ApsW
keseIM5xqzyM0bZ5eCVRgkecXA62nfhdXmUJnqL3yt2deWX+T21BDwaPXCxcsNj/
3GS2zvokjVO0BM/1ptqBThbQn5lluIYLYyhMhhfsg4bl6aKEBbTZk2R9G3P51wM3
D3tmVN8w0MBipSRJT0izRrwRfcj/TRMW96esyrZ3dxmTwRV6V27J3kdfkpBZvaCn
H9mpUUBmcshnOS/kapMMVpdGFjRomvlxotrjAvMbCfDp+UZLOWS2Fs0pVDcH3ZLT
/0alFXGA8c29VG4pWktVIQ==
-----END CERTIFICATE-----

1
node_modules/.astro/data-store.json generated vendored Normal file

File diff suppressed because one or more lines are too long

17
node_modules/.bin/acorn generated vendored
View File

@@ -1,16 +1 @@
#!/bin/sh ../acorn/bin/acorn
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../acorn/bin/acorn" "$@"
else
exec node "$basedir/../acorn/bin/acorn" "$@"
fi

17
node_modules/.bin/acorn.cmd generated vendored
View File

@@ -1,17 +0,0 @@
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\acorn\bin\acorn" %*

28
node_modules/.bin/acorn.ps1 generated vendored
View File

@@ -1,28 +0,0 @@
#!/usr/bin/env pwsh
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
}
$ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args
} else {
& "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../acorn/bin/acorn" $args
} else {
& "node$exe" "$basedir/../acorn/bin/acorn" $args
}
$ret=$LASTEXITCODE
}
exit $ret

17
node_modules/.bin/astro generated vendored
View File

@@ -1,16 +1 @@
#!/bin/sh ../astro/astro.js
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../astro/astro.js" "$@"
else
exec node "$basedir/../astro/astro.js" "$@"
fi

16
node_modules/.bin/astro-i18next generated vendored
View File

@@ -1,16 +0,0 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../astro-i18next/dist/cli/index.js" "$@"
else
exec node "$basedir/../astro-i18next/dist/cli/index.js" "$@"
fi

17
node_modules/.bin/astro-i18next.cmd generated vendored
View File

@@ -1,17 +0,0 @@
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\astro-i18next\dist\cli\index.js" %*

28
node_modules/.bin/astro-i18next.ps1 generated vendored
View File

@@ -1,28 +0,0 @@
#!/usr/bin/env pwsh
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
}
$ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../astro-i18next/dist/cli/index.js" $args
} else {
& "$basedir/node$exe" "$basedir/../astro-i18next/dist/cli/index.js" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../astro-i18next/dist/cli/index.js" $args
} else {
& "node$exe" "$basedir/../astro-i18next/dist/cli/index.js" $args
}
$ret=$LASTEXITCODE
}
exit $ret

17
node_modules/.bin/astro.cmd generated vendored
View File

@@ -1,17 +0,0 @@
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\astro\astro.js" %*

28
node_modules/.bin/astro.ps1 generated vendored
View File

@@ -1,28 +0,0 @@
#!/usr/bin/env pwsh
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
}
$ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../astro/astro.js" $args
} else {
& "$basedir/node$exe" "$basedir/../astro/astro.js" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../astro/astro.js" $args
} else {
& "node$exe" "$basedir/../astro/astro.js" $args
}
$ret=$LASTEXITCODE
}
exit $ret

17
node_modules/.bin/autoprefixer generated vendored
View File

@@ -1,16 +1 @@
#!/bin/sh ../autoprefixer/bin/autoprefixer
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../autoprefixer/bin/autoprefixer" "$@"
else
exec node "$basedir/../autoprefixer/bin/autoprefixer" "$@"
fi

17
node_modules/.bin/autoprefixer.cmd generated vendored
View File

@@ -1,17 +0,0 @@
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\autoprefixer\bin\autoprefixer" %*

28
node_modules/.bin/autoprefixer.ps1 generated vendored
View File

@@ -1,28 +0,0 @@
#!/usr/bin/env pwsh
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
}
$ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../autoprefixer/bin/autoprefixer" $args
} else {
& "$basedir/node$exe" "$basedir/../autoprefixer/bin/autoprefixer" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../autoprefixer/bin/autoprefixer" $args
} else {
& "node$exe" "$basedir/../autoprefixer/bin/autoprefixer" $args
}
$ret=$LASTEXITCODE
}
exit $ret

Some files were not shown because too many files have changed in this diff Show More