File size: 1,167 Bytes
afa9e42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
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 = 'Blueprint Engineering Consultancy - Ras Al Khaimah | Architectural Design & Engineering Supervision';
const description = '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>