began layout and design of home page

This commit is contained in:
StevanFreeborn
2022-06-25 10:30:21 -05:00
parent d0b1db5569
commit 60215c4279
9 changed files with 211 additions and 16 deletions
+4 -2
View File
@@ -1,9 +1,11 @@
import React from "react";
import React from 'react';
import Greeting from '../components/greeting';
export default function Home() {
return (
<>
<h1>Home</h1>
<Greeting/>
</>
);
}