17 lines
318 B
JavaScript
17 lines
318 B
JavaScript
import Footer from "@/components/Footer";
|
|
import Header from "@/components/Header";
|
|
|
|
export default function Writing() {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<section>
|
|
<h1>Writing</h1>
|
|
</section>
|
|
<section>
|
|
<i>Nothing to see here yet!</i>
|
|
</section>
|
|
<Footer/>
|
|
</>
|
|
);
|
|
}
|