-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add about, project, resource, and legal pages
- Loading branch information
Showing
16 changed files
with
209 additions
and
6 deletions.
There are no files selected for viewing
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const Mission = () => ( | ||
<> | ||
<Head> | ||
<title>Mission - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/about/mission" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/about/mission" /> | ||
</Head> | ||
<Header text="Mission" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default Mission; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const Contact = () => ( | ||
<> | ||
<Head> | ||
<title>Contact - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/about/contact" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/about/contact" /> | ||
</Head> | ||
<Header text="Contact" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default Contact; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const Membership = () => ( | ||
<> | ||
<Head> | ||
<title>Membership - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/about/membership" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/about/membership" /> | ||
</Head> | ||
<Header text="Membership" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default Membership; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const Newsletter = () => ( | ||
<> | ||
<Head> | ||
<title>Newsletter - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/about/newsletter" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/about/newsletter" /> | ||
</Head> | ||
<Header text="Newsletter" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default Newsletter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const API = () => ( | ||
<> | ||
<Head> | ||
<title>API & Platform - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/projects/api" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/projects/api" /> | ||
</Head> | ||
<Header text="API & Platform" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default API; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const Projects = () => ( | ||
<> | ||
<Head> | ||
<title>Projects - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/projects" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/projects" /> | ||
</Head> | ||
<Header text="Projects" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default Projects; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const Jupiter = () => ( | ||
<> | ||
<Head> | ||
<title>Jupiter - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/projects/jupiter" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/projects/jupiter" /> | ||
</Head> | ||
<Header text="Jupiter" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default Jupiter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const Planner = () => ( | ||
<> | ||
<Head> | ||
<title>Planner - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/projects/planner" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/projects/planner" /> | ||
</Head> | ||
<Header text="Planner" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default Planner; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const Skedge = () => ( | ||
<> | ||
<Head> | ||
<title>Skedge - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/projects/skedge" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/projects/skedge" /> | ||
</Head> | ||
<Header text="Skedge" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default Skedge; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const Trends = () => ( | ||
<> | ||
<Head> | ||
<title>Trends - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/projects/trends" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/projects/trends" /> | ||
</Head> | ||
<Header text="Trends" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default Trends; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const DesignGuide = () => ( | ||
<> | ||
<Head> | ||
<title>Design Guide - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/about/design-guide" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/about/design-guide" /> | ||
</Head> | ||
<Header text="Design Guide" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default DesignGuide; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
|
||
const Meetings = () => ( | ||
<> | ||
<Head> | ||
<title>Meetings - Nebula Labs</title> | ||
<link rel="canonical" href="https://www.utdnebula.com/about/Meetings" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/about/Meetings" /> | ||
</Head> | ||
<Header text="Roles" /> | ||
<Footer royalBg={false} /> | ||
</> | ||
); | ||
|
||
export default Meetings; |
File renamed without changes.