deepsite / src /pages /index.astro
archjayte's picture
Upload 35 files
afa9e42 verified
raw
history blame
1.68 kB
---
import Layout from '../layouts/Layout.astro';
import Header from '../components/Header.astro';
import Hero from '../components/Hero.astro';
import About from '../components/About.astro';
import Services from '../components/Services.astro';
import Workflow from '../components/Workflow.astro';
import Contact from '../components/Contact.astro';
import Footer from '../components/Footer.astro';
import { getLangFromUrl, useTranslations } from '../i18n/ui';
const lang = getLangFromUrl(Astro.url);
const t = useTranslations(lang);
const title = lang === 'ar'
? 'بلو برينت للاستشارات الهندسية - رأس الخيمة | تصميم معماري وإشراف هندسي'
: 'Blueprint Engineering Consultancy - Ras Al Khaimah | Architectural Design & Engineering Supervision';
const description = lang === 'ar'
? 'شركة بلو برينت للاستشارات الهندسية في رأس الخيمة. نقدم خدمات التصميم المعماري، الإنشائي، الكهربائي والميكانيكي، استخراج رخص البناء، والإشراف الهندسي. الهندسة بخبرة، الابتكار برؤية، التنفيذ بدقة.'
: 'Blueprint Engineering Consultancy in Ras Al Khaimah. We provide architectural, structural, electrical and mechanical design services, building permit extraction, and engineering supervision. Engineering with expertise, innovation with vision, execution with precision.';
---
<Layout title={title} description={description} lang={lang}>
<Header />
<main>
<Hero />
<About />
<Services />
<Workflow />
<Contact />
</main>
<Footer />
</Layout>