|
Last change
on this file since 875f7d6 was 875f7d6, checked in by stefansaveski <stefansaveski19@…>, 12 months ago |
|
Initial commit with Next.js project setup
|
-
Property mode
set to
100644
|
|
File size:
293 bytes
|
| Line | |
|---|
| 1 | import Image from "next/image";
|
|---|
| 2 | import Navbar from "@/components/navbar";
|
|---|
| 3 | import Header from "@/components/header";
|
|---|
| 4 | import Exams from "@/components/exams";
|
|---|
| 5 |
|
|---|
| 6 | export default function Home() {
|
|---|
| 7 | return (
|
|---|
| 8 | <>
|
|---|
| 9 | <Header></Header>
|
|---|
| 10 | <Navbar></Navbar>
|
|---|
| 11 | <Exams></Exams>
|
|---|
| 12 | </>
|
|---|
| 13 | );
|
|---|
| 14 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.