diff --git a/public/imgs/logo-mevcamp.svg b/public/imgs/logo-mevcamp.svg new file mode 100644 index 0000000..7f4c2e3 --- /dev/null +++ b/public/imgs/logo-mevcamp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index d2f8422..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index e38c626..10530a5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,113 +1,10 @@ +import NavBar from '@/components/navbar' import Image from 'next/image' export default function Home() { return ( -
-
-

- Get started by editing  - src/app/page.tsx -

-
- - By{' '} - Vercel Logo - -
-
- -
- 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/src/components/navbar.tsx b/src/components/navbar.tsx new file mode 100644 index 0000000..1b7ef9a --- /dev/null +++ b/src/components/navbar.tsx @@ -0,0 +1,33 @@ +import Image from 'next/image' + + +export default function NavBar() { + return ( + + ) + } \ No newline at end of file