Skip to content

Commit b8d14fa

Browse files
committed
Add placeholder pages for unit types and modelling with objects
1 parent dcc526c commit b8d14fa

File tree

2 files changed

+66
-0
lines changed

2 files changed

+66
-0
lines changed

src/pages/objects.jsx

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import Head from 'next/head'
2+
3+
import { Footer } from '@/components/Footer'
4+
import { Header } from '@/components/Header'
5+
import { Container } from '@/components/Container'
6+
7+
export default function ObjectsPage() {
8+
return (
9+
<>
10+
<Head>
11+
<title>MiniZinc - Object-Oriented Modelling</title>
12+
</Head>
13+
<Header />
14+
<main>
15+
<Container>
16+
<section id="objects" aria-labelledby="objects-title">
17+
<h2
18+
id="objects-title"
19+
className="text-3xl font-medium tracking-tight text-gray-900"
20+
>
21+
Object-Oriented Modelling
22+
</h2>
23+
<hr className="mt-2" />
24+
<p className="my-6 leading-7">
25+
Coming soon.
26+
</p>
27+
</section>
28+
</Container>
29+
</main>
30+
<Footer />
31+
</>
32+
)
33+
}

src/pages/unit-types.jsx

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import Head from 'next/head'
2+
3+
import { Footer } from '@/components/Footer'
4+
import { Header } from '@/components/Header'
5+
import { Container } from '@/components/Container'
6+
7+
export default function ObjectsPage() {
8+
return (
9+
<>
10+
<Head>
11+
<title>MiniZinc - Unit Types</title>
12+
</Head>
13+
<Header />
14+
<main>
15+
<Container>
16+
<section id="objects" aria-labelledby="objects-title">
17+
<h2
18+
id="objects-title"
19+
className="text-3xl font-medium tracking-tight text-gray-900"
20+
>
21+
Modelling with Unit Types
22+
</h2>
23+
<hr className="mt-2" />
24+
<p className="my-6 leading-7">
25+
Coming soon.
26+
</p>
27+
</section>
28+
</Container>
29+
</main>
30+
<Footer />
31+
</>
32+
)
33+
}

0 commit comments

Comments
 (0)