diff --git a/src/app/components/bingo.module.css b/src/app/components/bingo.module.css
new file mode 100644
index 0000000..b3c967f
--- /dev/null
+++ b/src/app/components/bingo.module.css
@@ -0,0 +1,8 @@
+.table{
+ margin: 0 auto;
+ border: 1px solid;
+}
+
+.td{
+ padding: 12px 16px;
+}
diff --git a/src/app/components/bingo.tsx b/src/app/components/bingo.tsx
new file mode 100644
index 0000000..24b1f93
--- /dev/null
+++ b/src/app/components/bingo.tsx
@@ -0,0 +1,16 @@
+import styles from './bingo.module.css'
+import BingoRow from './bingorow.tsx'
+
+export default function Bingo(){
+ return(
+
+ );
+}
diff --git a/src/app/components/bingoitem.tsx b/src/app/components/bingoitem.tsx
new file mode 100644
index 0000000..0352cff
--- /dev/null
+++ b/src/app/components/bingoitem.tsx
@@ -0,0 +1,7 @@
+import styles from './bingo.module.css'
+
+export default function BingoItem(){
+ return(
+ Item |
+ );
+}
diff --git a/src/app/components/bingorow.tsx b/src/app/components/bingorow.tsx
new file mode 100644
index 0000000..7573179
--- /dev/null
+++ b/src/app/components/bingorow.tsx
@@ -0,0 +1,13 @@
+import BingoItem from './bingoitem.tsx'
+
+export default function BingoRow(){
+ return(
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 40e027f..a31049a 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -5,8 +5,8 @@ import './globals.css'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
- title: 'Create Next App',
- description: 'Generated by create next app',
+ title: 'Buzzword Bingo',
+ description: 'by data.lore',
}
export default function RootLayout({
diff --git a/src/app/page.module.css b/src/app/page.module.css
index 6676d2c..39eb8ab 100644
--- a/src/app/page.module.css
+++ b/src/app/page.module.css
@@ -1,8 +1,4 @@
.main {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
padding: 6rem;
min-height: 100vh;
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 9ddf9b9..338a3f9 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,95 +1,11 @@
-import Image from 'next/image'
import styles from './page.module.css'
+import Bingo from './components/bingo.tsx'
-export default function Home() {
- return (
-
-
-
- Get started by editing
- src/app/page.tsx
-
-
-
-
-
-
-
-
-
-
- )
+export default function Home(){
+ return(
+
+ Buzzword Bingo
+
+
+ );
}