From 940ebb6c71bd39e87f5b565587406beabefddaad Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sat, 7 Oct 2023 00:01:57 -0400 Subject: Initial website --- .idea/dbnavigator.xml | 411 +++++++++++++++++++++++++++ .idea/inspectionProfiles/Project_Default.xml | 6 + .idea/vcs.xml | 6 + app/components/Navbar.js | 46 +++ app/corporate/page.js | 18 ++ app/layout.js | 24 +- app/locations/page.js | 18 ++ app/menu/page.js | 33 +++ app/page.js | 129 ++------- app/review/page.js | 18 ++ public/header.webp | Bin 0 -> 257400 bytes public/minepot-logo.svg | 110 +++++++ 12 files changed, 708 insertions(+), 111 deletions(-) create mode 100644 .idea/dbnavigator.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/vcs.xml create mode 100644 app/components/Navbar.js create mode 100644 app/corporate/page.js create mode 100644 app/locations/page.js create mode 100644 app/menu/page.js create mode 100644 app/review/page.js create mode 100644 public/header.webp create mode 100755 public/minepot-logo.svg diff --git a/.idea/dbnavigator.xml b/.idea/dbnavigator.xml new file mode 100644 index 0000000..fc7f36a --- /dev/null +++ b/.idea/dbnavigator.xml @@ -0,0 +1,411 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..03d9549 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/components/Navbar.js b/app/components/Navbar.js new file mode 100644 index 0000000..52172fb --- /dev/null +++ b/app/components/Navbar.js @@ -0,0 +1,46 @@ +"use client"; +import Image from "next/image"; +import Link from "next/link"; +import { useState } from "react"; + +const Navbar = () => { + const [navbar, setNavbar] = useState(false); + return ( + + ) +} + +export default Navbar; diff --git a/app/corporate/page.js b/app/corporate/page.js new file mode 100644 index 0000000..e0a5205 --- /dev/null +++ b/app/corporate/page.js @@ -0,0 +1,18 @@ +import Navbar from "@/app/components/Navbar"; + +export default function Corporate() { + return ( +
+
+ +
+

Corporate

+

(insert description, though might get removed)

+
+
+

Soon:tm:

+
+
+
+ ) +} diff --git a/app/layout.js b/app/layout.js index c93f806..db565be 100644 --- a/app/layout.js +++ b/app/layout.js @@ -1,17 +1,31 @@ import './globals.css' -import { Inter } from 'next/font/google' +import './components/Navbar' +import { Exo_2 } from 'next/font/google' -const inter = Inter({ subsets: ['latin'] }) +const exo = Exo_2({ subsets: ['latin'] }) export const metadata = { - title: 'Create Next App', - description: 'Generated by create next app', + title: { + template: '%s - MinePot', + default: 'MinePot' + }, + description: 'Official MinePot Website', } export default function RootLayout({ children }) { return ( - {children} + +
+ aircs.racing ↗ + alee14.me ↗ +
+ {children} + + ) } diff --git a/app/locations/page.js b/app/locations/page.js new file mode 100644 index 0000000..11f5486 --- /dev/null +++ b/app/locations/page.js @@ -0,0 +1,18 @@ +import Navbar from "@/app/components/Navbar"; + +export default function Locations() { + return ( +
+
+ +
+

Locations

+

(insert description, though might get removed)

+
+
+

Soon:tm:

+
+
+
+ ) +} diff --git a/app/menu/page.js b/app/menu/page.js new file mode 100644 index 0000000..250a906 --- /dev/null +++ b/app/menu/page.js @@ -0,0 +1,33 @@ +import Navbar from "@/app/components/Navbar"; + +export default function Menu() { + return ( +
+
+ +
+

Menu

+

(insert description, though might get removed)

+
+
+

Menu is currently being worked on

+ { + /* +

Main Course

+
    +
  • Steak - $5
  • +
  • Potato - $5
  • +
  • Potato - $5
  • +
  • Potato - $5
  • +
+

Special

+
    +
  • MinePot Soup - $20
  • +
+ * */ + } +
+
+
+ ) +} diff --git a/app/page.js b/app/page.js index 801ec13..e5481fb 100644 --- a/app/page.js +++ b/app/page.js @@ -1,113 +1,30 @@ -import Image from 'next/image' +import Navbar from "@/app/components/Navbar"; +import { Pacifico } from "next/font/google"; +import Link from "next/link"; + +const pacifico = Pacifico({ subsets: ['latin'], weight: "400" }) + export default function Home() { return ( -
-
-

- Get started by editing  - app/page.js -

-
- - By{' '} - Vercel Logo - +
+
+ +
+

Welcome to MinePot!

+

Where hunger meets adventure.

+
+
+
+

Who are we?

+

We are a restaurant chain that serves great and the best quality food in Minecraft!

+
+
+

Want to eat?

+ Head to this page for the menu +
+
-
- -
- Next.js Logo -
- -
- -

- Docs{' '} - - -> - -

-

- Find in-depth information about Next.js features and API. -

-
- - -

- Learn{' '} - - -> - -

-

- Learn about Next.js in an interactive course with quizzes! -

-
- - -

- Templates{' '} - - -> - -

-

- Explore the Next.js 13 playground. -

-
- - -

- Deploy{' '} - - -> - -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
-
) } diff --git a/app/review/page.js b/app/review/page.js new file mode 100644 index 0000000..8b3ec91 --- /dev/null +++ b/app/review/page.js @@ -0,0 +1,18 @@ +import Navbar from "@/app/components/Navbar"; + +export default function Review() { + return ( +
+
+ +
+

Review

+

(insert description, though might get removed)

+
+
+

Soon:tm:

+
+
+
+ ) +} diff --git a/public/header.webp b/public/header.webp new file mode 100644 index 0000000..3466757 Binary files /dev/null and b/public/header.webp differ diff --git a/public/minepot-logo.svg b/public/minepot-logo.svg new file mode 100755 index 0000000..0756c0f --- /dev/null +++ b/public/minepot-logo.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + MinePot + + + + + + -- cgit v1.2.3