import Image, { type ImageProps } from "next/image"; import { Button } from "@repo/ui/button"; import styles from "./page.module.css"; type Props = Omit & { srcLight: string; srcDark: string; }; const ThemeImage = (props: Props) => { const { srcLight, srcDark, ...rest } = props; return ( <> ); }; export default function Home() { return (
  1. Get started by editing apps/web/app/page.tsx
  2. Save and see your changes instantly.
Vercel logomark Deploy now Read our docs
); }