diff --git a/components/Logo.tsx b/components/Logo.tsx new file mode 100644 index 0000000..5e698cb --- /dev/null +++ b/components/Logo.tsx @@ -0,0 +1,23 @@ +"use client"; +import { cn } from "@/lib/utils"; +import Link from "next/link"; +import React from "react"; + +export const Logo = ({ className }: { className?: string }) => { + return ( + + {/* Replace with actual logo or app name */} +
+ Miami Elite Coaching + + ); +};