Svenson1974 commited on
Commit
eb4acfa
·
verified ·
1 Parent(s): 45016c8

Upload components/About.jsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/About.jsx +29 -0
components/About.jsx ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ export default function About() {
2
+ return (
3
+ <section className="py-16 bg-marine-light">
4
+ <div className="container mx-auto px-4">
5
+ <div className="flex flex-col md:flex-row items-center gap-12">
6
+ <div className="md:w-1/2">
7
+ <img
8
+ src="https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80"
9
+ alt="Submarine in water"
10
+ className="rounded-lg shadow-lg w-full"
11
+ />
12
+ </div>
13
+ <div className="md:w-1/2">
14
+ <h2 className="text-3xl font-bold text-marine-blue mb-6">About SABMARINE</h2>
15
+ <p className="text-marine-blue mb-4">
16
+ Founded in 2005, SABMARINE has been at the forefront of marine technology and submarine innovation.
17
+ </p>
18
+ <p className="text-marine-blue mb-4">
19
+ Our team of experienced engineers and marine experts work together to provide cutting-edge solutions for underwater exploration and operations.
20
+ </p>
21
+ <p className="text-marine-blue">
22
+ With a focus on safety, reliability, and innovation, we serve clients worldwide in various marine industries.
23
+ </p>
24
+ </div>
25
+ </div>
26
+ </div>
27
+ </section>
28
+ );
29
+ }