Skip to content

Commit

Permalink
[bugfixes]
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottAgirs committed Nov 15, 2019
1 parent 699cad6 commit 080e832
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 18 deletions.
7 changes: 3 additions & 4 deletions components/Footer.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Link from "next/link";
import Socials from "./Socials";

export const Footer = () => {
Expand All @@ -10,9 +9,9 @@ export const Footer = () => {
<div className="whatisthis">NextJS Starter App</div>
<div className="madein">
Packaged with ♡ at{" "}
<Link href="https://ijs.to/">
<a target="_blank">iJS.to</a>
</Link>
<a href="https://ijs.to/" target="_blank">
iJS.to
</a>
</div>
</footer>
<style jsx>{`
Expand Down
1 change: 0 additions & 1 deletion components/Meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export const Meta = () => {
rel="stylesheet"
/>
<link rel="shortcut icon" href="/favicon.png" />
<link rel="stylesheet" type="text/css" href="/global.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charSet="utf-8" />
</Head>
Expand Down
42 changes: 29 additions & 13 deletions pages/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,53 @@ export const About = () => {
<h1>About Page</h1>
<p>
NextJS is a framework that makes it easy to create Universal web apps in
React. With Next.js, React pages are automatically rendered on both
client and server side, without the hassle of setting up dependancies
like webpack or babel and with automatic routing. This is a simple
starter project that demonstrates how to use NextJS with custom layout
and some modular styles via <code>{"<style jsx />"}</code> and{" "}
<code>{"<style global jsx />"}</code> tags.
React.
</p>
<p>
With Next.js, React pages are automatically rendered on both client and
server side, without the hassle of setting up dependancies like webpack
or babel and with automatic routing.{" "}
</p>
<p>
This is a simple starter project that demonstrates how to use NextJS
with custom layout and some modular styles via{" "}
<code>{"<style jsx />"}</code> and <code>{"<style global jsx />"}</code>{" "}
tags.
</p>
<h2>Get Started (3 minutes)</h2>
<ul>
<li>
1. Clone the the [starter repo](https://github.com/ijsto/nextjs)
<code>git clone [email protected]:ijsto/inextjs.git</code>
1. Clone the the{" "}
<a href="https://github.com/ijsto/inextjs-layout">starter repo</a>
<p>
<code>git clone [email protected]:ijsto/inextjs-layout.git</code>
</p>
</li>
<li>
2. Enter the directory
<code>cd inextjs</code>
<p>
<code>cd inextjs-layout</code>
</p>
</li>
<li>
3. Install project dependencies <code>npm install</code> or{" "}
<code>npm i</code>
3. Install project dependencies
<p>
<code>npm install</code> or <code>npm i</code>
</p>
</li>
<li>
To run the project locally: <code>npm run dev</code>
To run the project locally:
<p>
<code>npm run dev</code>
</p>
</li>
<li>
Starter project is live at:{" "}
<a href="http://localhost:3000">http://localhost:3000</a>
</li>
</ul>
<h2>The starter is now ready - have fun!</h2>

<h2>The starter is now ready - have fun!</h2>
<style jsx>{`
* {
line-height: 1.5;
Expand Down

0 comments on commit 080e832

Please sign in to comment.