mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 23:44:11 +02:00
14 lines
206 B
TypeScript
14 lines
206 B
TypeScript
import React, { Fragment } from "react"
|
|
|
|
import { SEO } from "../components/SEO"
|
|
|
|
function IndexPage() {
|
|
return (
|
|
<Fragment>
|
|
<SEO title="Home" />
|
|
</Fragment>
|
|
)
|
|
}
|
|
|
|
export default IndexPage
|