diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..c88a062 Binary files /dev/null and b/.DS_Store differ diff --git a/client/pages/HomePage.tsx b/client/pages/HomePage.tsx index 2fe676d..1ccccb5 100644 --- a/client/pages/HomePage.tsx +++ b/client/pages/HomePage.tsx @@ -3,7 +3,7 @@ * (c) 2019 - 2020 Nguyen Huu Phuoc */ -import React from 'react'; +import * as React from 'react'; import { Helmet } from 'react-helmet'; import { Link } from 'react-router-dom'; @@ -25,6 +25,13 @@ const HomePage = () => { +
+
+
CSS Layout
+

Popular Layouts & patterns made with CSS

+
+
+
{ }} >
-

- CSS Layout -

- -

- a collection of popular layouts and patterns made with CSS -

-
diff --git a/client/pages/home.css b/client/pages/home.css index 135eeae..c3668a6 100644 --- a/client/pages/home.css +++ b/client/pages/home.css @@ -2,6 +2,28 @@ * A collection of popular layouts and patterns made with CSS (https://csslayout.io) * (c) 2019 - 2020 Nguyen Huu Phuoc */ + +.home__hero { + background: var(--background-color); + display: flex; + justify-content: center; + padding-bottom: 4rem; +} +.home__logo { + text-align: center; +} +.home__logo img { + height: 16rem; + object-fit: cover; + width: 24rem; +} +.home__heading { + color: var(--text-color); + font-size: 3rem; + margin: 0; + text-align: center; + text-transform: capitalize; +} .home-cards { animation: slide 40s linear infinite; diff --git a/public/assets/logo.png b/public/assets/logo.png new file mode 100644 index 0000000..db55d23 Binary files /dev/null and b/public/assets/logo.png differ