import { Metadata } from "next"; import AboutSummary from "@/components/about-summary"; export const metadata: Metadata = { title: "Gabriel Kaszewski | Software Engineer", description: "Portfolio of Gabriel Kaszewski, a software engineer building fast, reliable software with Rust, Python, and modern web technologies.", alternates: { canonical: "https://gabrielkaszewski.dev", }, openGraph: { title: "Gabriel Kaszewski | Software Engineer", description: "Portfolio of Gabriel Kaszewski, a software engineer building fast, reliable software with Rust, Python, and modern web technologies.", url: "https://gabrielkaszewski.dev", }, twitter: { card: "summary_large_image", title: "Gabriel Kaszewski | Software Engineer", description: "Portfolio of Gabriel Kaszewski, a software engineer building fast, reliable software with Rust, Python, and modern web technologies.", }, }; import CommercialProjects from "@/components/commercial-projects"; import Experience from "@/components/experience"; import FunZoneCta from "@/components/fun-zone-cta"; import Hero from "@/components/hero"; import Skills from "@/components/skills"; import { skills, jobs } from "@/lib/data"; import { featureFlags } from "@/lib/feature-flags"; export default function Home() { return (
{featureFlags.funZone && }
); }