OsamaMo commited on
Commit
d96077e
·
verified ·
1 Parent(s): 40d0450

Upload components/About.tsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/About.tsx +80 -0
components/About.tsx ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { Building2, Leaf, Award } from 'lucide-react'
2
+
3
+ const About = () => {
4
+ const stats = [
5
+ { number: '15+', label: 'Years Experience' },
6
+ { number: '50+', label: 'Projects Completed' },
7
+ { number: '2M+', label: 'Sq Ft Developed' },
8
+ { number: '100%', label: 'Client Satisfaction' },
9
+ ]
10
+
11
+ const features = [
12
+ {
13
+ icon: Building2,
14
+ title: 'Innovative Design',
15
+ description: 'Pushing boundaries with architectural excellence and contemporary aesthetics'
16
+ },
17
+ {
18
+ icon: Leaf,
19
+ title: 'Sustainable Future',
20
+ description: 'Eco-conscious developments that minimize environmental impact'
21
+ },
22
+ {
23
+ icon: Award,
24
+ title: 'Award Winning',
25
+ description: 'Recognized globally for outstanding contributions to real estate'
26
+ }
27
+ ]
28
+
29
+ return (
30
+ <section id="about" className="py-24 md:py-32 bg-margins-black">
31
+ <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
32
+ {/* Main Content */}
33
+ <div className="grid md:grid-cols-2 gap-16 items-center mb-24">
34
+ <div className="animate-slide-up">
35
+ <span className="text-margins-gray uppercase tracking-widest text-sm mb-4 block">About Us</span>
36
+ <h2 className="text-4xl md:text-5xl font-light mb-6 leading-tight">
37
+ Creating Spaces That
38
+ <span className="block font-normal italic text-margins-gray">Inspire & Endure</span>
39
+ </h2>
40
+ </div>
41
+ <div className="space-y-6 text-margins-gray leading-relaxed animate-slide-up">
42
+ <p>
43
+ Margins Developments is a premier real estate development company dedicated to creating
44
+ exceptional living and working environments. With over 15 years of experience, we have
45
+ established ourselves as leaders in innovative architectural design and sustainable development.
46
+ </p>
47
+ <p>
48
+ Our commitment to excellence drives every project we undertake, from luxury residential
49
+ towers to mixed-use commercial spaces. We believe in creating developments that not only
50
+ meet the needs of today but anticipate the demands of tomorrow.
51
+ </p>
52
+ </div>
53
+ </div>
54
+
55
+ {/* Stats */}
56
+ <div className="grid grid-cols-2 md:grid-cols-4 gap-8 mb-24 py-12 border-y border-margins-dark">
57
+ {stats.map((stat, index) => (
58
+ <div key={index} className="text-center">
59
+ <div className="text-4xl md:text-5xl font-light mb-2">{stat.number}</div>
60
+ <div className="text-margins-gray text-sm uppercase tracking-widest">{stat.label}</div>
61
+ </div>
62
+ ))}
63
+ </div>
64
+
65
+ {/* Features */}
66
+ <div className="grid md:grid-cols-3 gap-12">
67
+ {features.map((feature, index) => (
68
+ <div key={index} className="group">
69
+ <feature.icon className="w-8 h-8 mb-6 text-margins-gray group-hover:text-white transition-colors duration-300" />
70
+ <h3 className="text-xl font-light mb-4 uppercase tracking-wider">{feature.title}</h3>
71
+ <p className="text-margins-gray leading-relaxed">{feature.description}</p>
72
+ </div>
73
+ ))}
74
+ </div>
75
+ </div>
76
+ </section>
77
+ )
78
+ }
79
+
80
+ export default About