"use client"; import { Badge } from "./ui/badge"; import macBookMainImage from "@/assets/images/macbook-main.png"; import { Section } from "@/components/Section"; import { cn } from "@/lib/utils"; import Image from "next/image"; import { Fragment } from "react"; import meta from 'next-gen/config'; function isDevelopment() { return process.env.NODE_ENV === "development"; } function FeatureCard(props: { className?: String; title: React.ReactNode; description: String; }) { return (
{/*
*/}
{props.title}
{props.description}
); } export default function Main() { return (
{/* Hero Section */}
✨ Open Source on Github {meta.tagline} {meta.description} Get Started
{/* Find My Ports on MacBook Pro 14 */}
); }