18 | );
19 | }
20 |
--------------------------------------------------------------------------------
/components/footer.js:
--------------------------------------------------------------------------------
1 | export default function Footer() {
2 | return (
3 |
29 | );
30 | }
31 |
--------------------------------------------------------------------------------
/.all-contributorsrc:
--------------------------------------------------------------------------------
1 | {
2 | "files": [
3 | "README.md"
4 | ],
5 | "imageSize": 100,
6 | "commit": false,
7 | "contributors": [
8 | {
9 | "login": "Mozart409",
10 | "name": "Amadeus",
11 | "avatar_url": "https://avatars2.githubusercontent.com/u/38767929?v=4",
12 | "profile": "https://github.com/Mozart409",
13 | "contributions": [
14 | "code",
15 | "ideas"
16 | ]
17 | },
18 | {
19 | "login": "egdavid",
20 | "name": "David Eugene",
21 | "avatar_url": "https://avatars3.githubusercontent.com/u/10560326?v=4",
22 | "profile": "https://www.synaptech.fr",
23 | "contributions": [
24 | "code"
25 | ]
26 | }
27 | ],
28 | "contributorsPerLine": 7,
29 | "projectName": "next-starter-tailwind",
30 | "projectOwner": "taylorbryant",
31 | "repoType": "github",
32 | "repoHost": "https://github.com",
33 | "skipCi": true
34 | }
35 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 Taylor Bryant
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/pages/about.js:
--------------------------------------------------------------------------------
1 | import Image from "next/image";
2 |
3 | export default function AboutPage() {
4 | return (
5 |
6 |
7 |
8 |
What is Tailwind?
9 |
10 |
11 | Tailwind CSS is a highly customizable, low-level CSS framework that
12 | gives you all of the building blocks you need to build bespoke
13 | designs without any annoying opinionated styles you have to fight to
14 | override.
15 |
16 |
17 |
18 |
19 |
What is Next.js?
20 |
21 | Next.js is a minimalistic framework for creating server-rendered
22 | React applications.
23 |