M-Zeki commited on
Commit
d929c76
·
verified ·
1 Parent(s): e458345

Upload components/Services.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/Services.js +57 -0
components/Services.js ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { motion } from 'framer-motion';
2
+
3
+ const services = [
4
+ {
5
+ title: "Flerspråklig AI-kvalitet og Evaluering",
6
+ desc: "RLHF, AI Safety, Prompt Engineering",
7
+ details: "Sikrer at AI-modeller forstår nyanser, kontekst og kulturelle referanser i nordiske språk. Omfatter omfattende testing av bias og sikkerhet.",
8
+ icon: "AI"
9
+ },
10
+ {
11
+ title: "Lokalisering og Språklig QA",
12
+ desc: "Nordic adaptations, Cultural trust",
13
+ details: "Mer enn oversettelse. Vi tilpasser produktet til det lokale markedet med fokus på brukeropplevelse, tone-of-voice og juridisk korrekthet.",
14
+ icon: "LOC"
15
+ },
16
+ {
17
+ title: "Tolking og Grensekryssende Kommunikasjon",
18
+ desc: "Legal, Medical, Corporate",
19
+ details: "Presis kommunikasjon i høytroende miljøer. Sertifisert erfaring innen juridisk og medisinsk terminologi for internasjonale team.",
20
+ icon: "COM"
21
+ }
22
+ ];
23
+
24
+ export default function Services() {
25
+ return (
26
+ <section id="services" className="py-24 bg-nordic-navy relative">
27
+ <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
28
+ <div className="text-center mb-16">
29
+ <h2 className="text-3xl md:text-4xl font-bold text-white mb-4">Kjernekompetanse</h2>
30
+ <div className="w-20 h-1 bg-nordic-cyan mx-auto rounded-full"></div>
31
+ </div>
32
+
33
+ <div className="grid grid-cols-1 md:grid-cols-3 gap-8">
34
+ {services.map((service, index) => (
35
+ <motion.div
36
+ key={index}
37
+ initial={{ opacity: 0, y: 30 }}
38
+ whileInView={{ opacity: 1, y: 0 }}
39
+ transition={{ delay: index * 0.2, duration: 0.5 }}
40
+ viewport={{ once: true }}
41
+ className="glass-panel p-8 rounded-xl group hover:-translate-y-2 transition-all duration-300"
42
+ >
43
+ <div className="text-nordic-cyan font-mono text-2xl font-bold mb-4 group-hover:text-white transition-colors">
44
+ 0{index + 1} // {service.icon}
45
+ </div>
46
+ <h3 className="text-xl font-bold text-white mb-2">{service.title}</h3>
47
+ <p className="text-nordic-cyan text-sm font-mono mb-4 opacity-80">{service.desc}</p>
48
+ <p className="text-gray-400 text-sm leading-relaxed">
49
+ {service.details}
50
+ </p>
51
+ </motion.div>
52
+ ))}
53
+ </div>
54
+ </div>
55
+ </section>
56
+ );
57
+ }