This commit is contained in:
gpt-engineer-app[bot]
2026-01-27 19:24:01 +00:00
parent b7bf358981
commit 9d9ea09772
5 changed files with 259 additions and 163 deletions
+66 -43
View File
@@ -2,10 +2,11 @@ import { Check } from "lucide-react";
const plans = [
{
name: "Kontorsabonnemang Bas",
price: "1 990 kr",
period: "/mån",
description: "Perfekt för mindre kontor (upp till 15 personer)",
name: "Bas",
subtitle: "Kontorsabonnemang",
price: "1 990",
period: "kr/månad",
description: "Perfekt för mindre kontor med upp till 15 personer",
features: [
"2 leveranser per månad",
"Premium konditorikakor",
@@ -15,10 +16,11 @@ const plans = [
featured: false,
},
{
name: "Kontorsabonnemang Pro",
price: "3 490 kr",
period: "/mån",
description: "För växande företag (1540 personer)",
name: "Pro",
subtitle: "Kontorsabonnemang",
price: "3 490",
period: "kr/månad",
description: "För växande företag med 1540 personer",
features: [
"4 leveranser per månad",
"Utvalda sortiment",
@@ -28,7 +30,8 @@ const plans = [
featured: true,
},
{
name: "Företagsavtal",
name: "Avtal",
subtitle: "Företagsanpassat",
price: "Offert",
period: "",
description: "För stora kontor, event och kedjor",
@@ -44,71 +47,91 @@ const plans = [
const PlansSection = () => {
return (
<section id="plans" className="py-24 px-6 bg-secondary/50">
<div className="max-w-6xl mx-auto">
<h2 className="font-display text-center text-4xl md:text-5xl font-bold mb-4">
Våra företagsabonnemang
</h2>
<p className="text-center text-muted-foreground mb-16 max-w-2xl mx-auto">
Välj det abonnemang som passar ert företag bäst
</p>
<section id="plans" className="py-24 px-6 bg-background">
<div className="max-w-5xl mx-auto">
{/* Section header */}
<div className="text-center mb-16">
<div className="divider-ornament mb-6">
<span className="ornament"></span>
</div>
<h2 className="font-display text-4xl md:text-5xl font-semibold mb-4 italic">
Våra Abonnemang
</h2>
<p className="text-muted-foreground text-lg max-w-2xl mx-auto">
Välj det abonnemang som passar ert företag bäst
</p>
</div>
{/* Plans grid */}
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
{plans.map((plan, index) => (
<div
key={index}
className={`relative rounded-3xl p-8 flex flex-col card-glow ${
plan.featured
? "bg-gradient-to-b from-primary/20 to-card border-2 border-primary/30"
: "bg-card border border-border"
className={`relative bg-card p-8 card-classic rounded-sm ${
plan.featured ? "border-2 border-primary" : ""
}`}
>
{plan.featured && (
<div className="absolute -top-4 left-1/2 -translate-x-1/2">
<span className="btn-primary px-4 py-1.5 text-sm rounded-full">
Mest populär
<div className="absolute -top-3 left-1/2 -translate-x-1/2">
<span className="bg-primary text-primary-foreground px-4 py-1 text-sm font-semibold rounded-sm">
Rekommenderad
</span>
</div>
)}
<div className="mb-6">
<h3 className="font-display text-2xl font-bold mb-2">
{/* Plan header */}
<div className="text-center mb-6 pb-6 border-b border-border">
<p className="text-muted-foreground text-sm uppercase tracking-wider mb-1">
{plan.subtitle}
</p>
<h3 className="font-display text-3xl font-semibold text-foreground italic">
{plan.name}
</h3>
<div className="flex items-baseline gap-1">
<span className="text-4xl font-bold text-gradient">
{plan.price}
</span>
<span className="text-muted-foreground">{plan.period}</span>
</div>
</div>
<p className="text-muted-foreground mb-8">{plan.description}</p>
{/* Price */}
<div className="text-center mb-6">
<span className="font-display text-4xl font-bold text-primary">
{plan.price}
</span>
{plan.period && (
<span className="text-muted-foreground ml-1">{plan.period}</span>
)}
</div>
<ul className="space-y-4 mb-8 flex-grow">
<p className="text-muted-foreground text-center mb-8 text-sm">
{plan.description}
</p>
{/* Features */}
<ul className="space-y-3 mb-8">
{plan.features.map((feature, i) => (
<li key={i} className="flex items-center gap-3">
<div className="w-5 h-5 rounded-full bg-primary/20 flex items-center justify-center flex-shrink-0">
<Check className="w-3 h-3 text-primary" />
</div>
<span className="text-foreground/80">{feature}</span>
<li key={i} className="flex items-start gap-3">
<Check className="w-4 h-4 text-primary mt-1 flex-shrink-0" />
<span className="text-foreground/80 text-sm">{feature}</span>
</li>
))}
</ul>
{/* CTA Button */}
<a
href="#"
className={`text-center py-4 rounded-xl font-semibold transition-all duration-300 ${
className={`block text-center py-3 px-6 rounded-sm font-semibold transition-all duration-300 ${
plan.featured
? "btn-primary"
: "bg-secondary hover:bg-secondary/80 text-foreground border border-border"
? "btn-classic"
: "btn-outline-classic"
}`}
>
{plan.price === "Offert" ? "Kontakta oss" : "Starta abonnemang"}
{plan.price === "Offert" ? "Begär offert" : "Välj abonnemang"}
</a>
</div>
))}
</div>
{/* Bottom ornament */}
<div className="text-center mt-16 text-primary/40 font-display text-2xl">
</div>
</div>
</section>
);