File tree Expand file tree Collapse file tree 2 files changed +66
-0
lines changed Expand file tree Collapse file tree 2 files changed +66
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments