import Image from "next/image"; import { Inter } from "next/font/google"; import Head from "next/head"; import { Counter } from "@/Counter"; const inter = Inter({ subsets: ["latin"] }); export default function Home({ bunVersion }: any) { return (
Create Next App

Bun Version: {bunVersion}

By Vercel Logo
Next.js Logo

Docs{" "} ->

Find in-depth information about Next.js features and API.

Learn{" "} ->

Learn about Next.js in an interactive course with quizzes!

Templates{" "} ->

Discover and deploy boilerplate example Next.js projects.

Deploy{" "} ->

Instantly deploy your Next.js site to a shareable URL with Vercel.

); } export async function getStaticProps() { return { props: { bunVersion: process.env.NODE_ENV === "production" ? "[production needs a constant string]" : process.versions.bun ?? "not in bun", }, }; }