diff --git a/frontend/components/shared/Header.tsx b/frontend/components/shared/Header.tsx
index a3e67c1..51fd506 100644
--- a/frontend/components/shared/Header.tsx
+++ b/frontend/components/shared/Header.tsx
@@ -2,15 +2,9 @@ import { header } from "@/content/header";
import Image from "next/image";
import Link from "next/link";
import { Container } from "./Container";
-import {
- Sheet,
- SheetContent,
- SheetDescription,
- SheetHeader,
- SheetTitle,
- SheetTrigger,
-} from "../ui/sheet";
+import { Sheet, SheetContent, SheetTrigger } from "../ui/sheet";
import { Menu } from "lucide-react";
+import { Logo } from "./Logo";
export const Header = () => {
return (
@@ -18,7 +12,7 @@ export const Header = () => {
-
+
{header.links.map((link, index) => (
{
+ return (
+
+ );
+};
diff --git a/frontend/components/templates/CommunitySection.tsx b/frontend/components/templates/CommunitySection.tsx
index 6b6b685..826e12a 100644
--- a/frontend/components/templates/CommunitySection.tsx
+++ b/frontend/components/templates/CommunitySection.tsx
@@ -39,11 +39,11 @@ export const CommunitySection = ({ content }: CommunityProps) => {
-
+
{content.locations.map(
(
location: {
@@ -85,7 +85,7 @@ export default function Map({ content }: MapProp) {
href={location.href}
target="_blank"
>
-
+
diff --git a/frontend/components/templates/ServicesCard.tsx b/frontend/components/templates/ServicesCard.tsx
index b7bdafa..d357b0b 100644
--- a/frontend/components/templates/ServicesCard.tsx
+++ b/frontend/components/templates/ServicesCard.tsx
@@ -23,20 +23,20 @@ export const ServicesCard = ({ cards }: CardsProps) => {
const Card = ({ card }: any) => {
return (
-
+
-
-
{card.name}
+
+
{card.name}
{card.content}
diff --git a/frontend/components/templates/ServicesSection.tsx b/frontend/components/templates/ServicesSection.tsx
index 0a856e7..8de0f96 100644
--- a/frontend/components/templates/ServicesSection.tsx
+++ b/frontend/components/templates/ServicesSection.tsx
@@ -18,7 +18,7 @@ interface sectionProps {
export const ServicesSection = ({ content }: sectionProps) => {
return (
-
+
{content.title}
diff --git a/frontend/components/templates/SocialProofSection.tsx b/frontend/components/templates/SocialProofSection.tsx
index eaffdd3..a454083 100644
--- a/frontend/components/templates/SocialProofSection.tsx
+++ b/frontend/components/templates/SocialProofSection.tsx
@@ -24,7 +24,7 @@ export const SocialProofSection = ({
diff --git a/frontend/components/ui/button.tsx b/frontend/components/ui/button.tsx
index 2645c2b..992a680 100644
--- a/frontend/components/ui/button.tsx
+++ b/frontend/components/ui/button.tsx
@@ -5,12 +5,12 @@ import { cva, type VariantProps } from "class-variance-authority";
import { cn } from "@/lib/utils";
const buttonVariants = cva(
- "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",
+ "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-all hover:scale-105 ease-in focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",
{
variants: {
variant: {
default:
- "group inline-flex gap-4 items-center justify-center w-fit rounded-full bg-background-accent text-white",
+ "group inline-flex gap-4 items-center justify-center w-fit rounded-full bg-background-accent text-foreground-invert stroke-foreground-invert",
destructive:
"bg-destructive text-destructive-foreground hover:bg-destructive/90",
outline:
@@ -18,7 +18,7 @@ const buttonVariants = cva(
secondary:
"bg-secondary text-secondary-foreground hover:bg-secondary/80",
ghost: "hover:bg-accent hover:text-accent-foreground",
- link: "text-primary underline-offset-4 hover:underline",
+ link: "text-foreground-invert underline-offset-4 hover:underline",
},
size: {
default: "px-6 py-3",
diff --git a/frontend/components/ui/input.tsx b/frontend/components/ui/input.tsx
index 644632d..25f20f5 100644
--- a/frontend/components/ui/input.tsx
+++ b/frontend/components/ui/input.tsx
@@ -11,7 +11,7 @@ const Input = React.forwardRef(
(
return (