go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/chirp/pkg/static/_nextjs/src/pages/index.tsx (about) 1 /** 2 * Copyright (c) 2024 - Present. Will Charczuk. All rights reserved. 3 * Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository. 4 */ 5 import * as React from 'react-dom'; 6 import { Layout } from '../components/layout'; 7 8 export default function Page() { 9 return ( 10 <Layout> 11 <div className="container"> 12 <div className="twelve columns align-center"> 13 <h1>Hello, Next.js!</h1> 14 </div> 15 </div> 16 </Layout> 17 ) 18 }