From 3164d231e6fbf14f85074f457c45e7f80eb98670 Mon Sep 17 00:00:00 2001 From: Ruidy Nemausat Date: Tue, 12 May 2020 10:41:05 +0200 Subject: [PATCH] write landing page layout --- src/App.tsx | 47 ++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 44 insertions(+), 3 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index e91ac07..9c747f0 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,7 +1,48 @@ import React from 'react'; -function App() { - return
; -} +const App = () => { + return ( + <> + +
+
+
+

DevBook

+

+ Create developer profiles, portfolio, share and get help from + other devs +

+
+ + Sign up + + + Login + +
+
+
+
+ + ); +}; export default App;