This commit is contained in:
2025-09-16 14:24:25 +02:00
parent 13ecc4d2ec
commit 273cb24a47
10 changed files with 55 additions and 105 deletions

View File

@@ -1,7 +1,7 @@
"use client";
import { H2, P, CP } from "@/components/Texts";
import { Button } from "@/components/ui/Button";
import { Button } from "@/components/Button";
export function GetStarted() {
const items = [
@@ -58,7 +58,7 @@ export function GetStarted() {
{/* Title + Button Row */}
<div className="flex items-center justify-between">
<h3 className="text-xl font-semibold">{item.title}</h3>
<Button variant="outline" href={item.href}>
<Button variant="outline" href={item.href} color="white">
{item.buttonText}
</Button>
</div>