From 5e82a77420901db5ae837cc890180c0bf5c87bdb Mon Sep 17 00:00:00 2001 From: Pedro Palau Date: Thu, 25 Jun 2020 15:45:35 -0500 Subject: [PATCH] Updates index page --- docs/pages/index.js | 232 +++++--------------------------------------- 1 file changed, 24 insertions(+), 208 deletions(-) diff --git a/docs/pages/index.js b/docs/pages/index.js index 1379c5f..04d4341 100644 --- a/docs/pages/index.js +++ b/docs/pages/index.js @@ -1,209 +1,25 @@ -import Head from 'next/head' - -export default function Home() { - return ( -
- - Create Next App - - - -
-

- Welcome to Next.js! -

- -

- Get started by editing pages/index.js -

- -
- -

Documentation →

-

Find in-depth information about Next.js features and API.

-
- - -

Learn →

-

Learn about Next.js in an interactive course with quizzes!

-
- - -

Examples →

-

Discover and deploy boilerplate example Next.js projects.

-
- - -

Deploy →

-

- Instantly deploy your Next.js site to a public URL with Vercel. -

-
-
-
- - - - - - +import React from 'react'; + +import Layout from '../components/Layout'; + +const Home = () => ( + +
+

+ React photo gallery +

+

+ Friendly, customizable and accessible-ready simple photo gallery based on  + React + . +

+
+ +
- ) -} +
+); + +export default Home;