diff --git a/frontend/src/app/Home/index.jsx b/frontend/src/app/Home/index.jsx index dc41f2f..63b9fe5 100644 --- a/frontend/src/app/Home/index.jsx +++ b/frontend/src/app/Home/index.jsx @@ -6,61 +6,64 @@ import { REGISTER } from "routes"; import { HomeContainer, Top, TopContainer, BottomContainer, Footer } from "./styles"; import { Grid } from "styles/common"; -const Home = () => ( - - - -
Gear management for backpackers
-

Packstack makes it easy for you to manage your
  - backpacking gear and create packing lists.

- - GET STARTED - -
-
- - -
-

Manage your inventory

-

Your gear is the most important part of any trip. - Packstack lets you view and maintain your items all in one spot.

+const Home = () => { + const copyrightYear = new Date().getFullYear(); + return ( + + + +
Gear management for backpackers
+

Packstack makes it easy for you to manage your
  + backpacking gear and create packing lists.

+ + GET STARTED + +
+
+ + +
+

Manage your inventory

+

Your gear is the most important part of any trip. + Packstack lets you view and maintain your items all in one spot.

+
+
+ Backpack gear inventory management +
+
+ +
+ Create a backpacking packing list +
+
+

Create packing lists

+

Once you’ve added your gear, you can use your inventory to create packing lists. + Each pack can include additional information about the trip, too.

+
+
+ +
+

Share your packs

+

Packstack generates a detailed, well-formatted packing list for every pack you create, + which you can share or reference when it’s time to load your pack.

+
+
+ View backpacking packing list +
+
+
+ + GET STARTED +
-
- Backpack gear inventory management -
- - -
- Create a backpacking packing list -
-
-

Create packing lists

-

Once you’ve added your gear, you can use your inventory to create packing lists. - Each pack can include additional information about the trip, too.

-
-
- -
-

Share your packs

-

Packstack generates a detailed, well-formatted packing list for every pack you create, - which you can share or reference when it’s time to load your pack.

-
-
- View backpacking packing list -
-
-
- - GET STARTED - -
-
- Copyright © 2020 Packstack.io • Packstack is an - open - source project -
-
-
-); + + + + ) +}; -export default Home; \ No newline at end of file +export default Home;