mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
import Head from 'next/head'
|
|
import styles from '../styles/Home.module.css'
|
|
import Layout from '../components/Layout'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Layout>
|
|
Hello, World
|
|
</Layout>
|
|
)
|
|
}
|