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

Upload components/Services.jsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/Services.jsx +41 -0
components/Services.jsx ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ export default function Services() {
2
+ const services = [
3
+ {
4
+ title: "Submarine Design",
5
+ description: "Custom submarine design and engineering solutions.",
6
+ icon: "🚤"
7
+ },
8
+ {
9
+ title: "Marine Research",
10
+ description: "Advanced marine research and exploration services.",
11
+ icon: "🔬"
12
+ },
13
+ {
14
+ title: "Underwater Maintenance",
15
+ description: "Professional underwater maintenance and repairs.",
16
+ icon: "🔧"
17
+ },
18
+ {
19
+ title: "Marine Consulting",
20
+ description: "Expert consulting for marine operations.",
21
+ icon: "💼"
22
+ }
23
+ ];
24
+
25
+ return (
26
+ <section className="py-16 bg-white">
27
+ <div className="container mx-auto px-4">
28
+ <h2 className="text-3xl font-bold text-center text-marine-blue mb-12">Our Services</h2>
29
+ <div className="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
30
+ {services.map((service, index) => (
31
+ <div key={index} className="bg-marine-light p-6 rounded-lg shadow-md hover:shadow-lg transition-shadow">
32
+ <div className="text-4xl mb-4">{service.icon}</div>
33
+ <h3 className="text-xl font-bold text-marine-blue mb-2">{service.title}</h3>
34
+ <p className="text-marine-blue">{service.description}</p>
35
+ </div>
36
+ ))}
37
+ </div>
38
+ </div>
39
+ </section>
40
+ );
41
+ }