diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 61a66f1..552e896 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,22 +1,17 @@ import type { Metadata } from "next"; -import { Archivo } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { @@ -45,7 +40,7 @@ export default function RootLayout({ {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 3953beb..cefe03f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,21 +11,23 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactText from '@/components/sections/contact/ContactText'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Zap, CheckCircle, Lightbulb, Leaf, Linkedin, Twitter, Mail } from 'lucide-react'; +import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow'; +import { Zap, CheckCircle, Lightbulb, Leaf, Linkedin, Twitter, Mail, TrendingUp, Zap as ZapIcon, Gauge } from 'lucide-react'; +import Image from 'next/image'; export default function ShatexLanding() { return ( +
+ + Founding Year +
+ ), + content: ( +
+

2010 - Foundation Year

+

Shatex Services was founded with a vision to deliver innovative engineering solutions. Started with a small team of industry experts.

+
    +
  • Established core team
  • +
  • First major client engagement
  • +
  • Infrastructure focus
  • +
+
+ ) + }, + { + id: "2", reverse: true, + media: ( +
+ Expansion Phase +
+ ), + content: ( +
+

2015 - Expansion Phase

+

Expanded service offerings to include consultancy, project management, and sustainability solutions.

+
    +
  • Opened new regional offices
  • +
  • 50+ team members
  • +
  • 100+ projects completed
  • +
+
+ ) + }, + { + id: "3", reverse: false, + media: ( +
+ Sustainability Leadership +
+ ), + content: ( +
+

2018 - Sustainability Leadership

+

Became recognized as a thought leader in sustainable engineering solutions and green technology initiatives.

+
    +
  • Launched sustainability division
  • +
  • Industry certifications earned
  • +
  • 250M tons CO2 reduction
  • +
+
+ ) + }, + { + id: "4", reverse: true, + media: ( +
+ Digital Innovation +
+ ), + content: ( +
+

2021 - Digital Transformation

+

Embraced digital transformation, launching innovative platforms connecting facilities and enabling predictive maintenance.

+
    +
  • Digital platform launched
  • +
  • 200+ team members
  • +
  • Global operations
  • +
+
+ ) + }, + { + id: "5", reverse: false, + media: ( +
+ Global Recognition +
+ ), + content: ( +
+

2024 - Global Recognition

+

Achieved 500+ successful projects, $2.3B in project value, and 95% client satisfaction rate. Recognized as industry leaders worldwide.

+
    +
  • 500+ projects completed
  • +
  • 95% client satisfaction
  • +
  • Global industry leader
  • +
+
+ ) + } + ]} + /> + +