Merge pull request #60 from TurTaskProject/feature/landing-page

Add landing page
This commit is contained in:
Sirin Puenggun 2023-11-23 01:00:21 +07:00 committed by GitHub
commit 3ad512ab69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 126 additions and 67 deletions

View File

@ -1,6 +1,6 @@
import { useEffect } from "react"; import { useEffect } from "react";
import "./App.css"; import "./App.css";
import { Route, Routes } from "react-router-dom"; import { Route, Routes, Navigate } from "react-router-dom";
import axios from "axios"; import axios from "axios";
import TestAuth from "./components/testAuth"; import TestAuth from "./components/testAuth";
import LoginPage from "./components/authentication/LoginPage"; import LoginPage from "./components/authentication/LoginPage";
@ -13,6 +13,8 @@ import Eisenhower from "./components/EisenhowerMatrix/Eisenhower";
import PrivateRoute from "./PrivateRoute"; import PrivateRoute from "./PrivateRoute";
import ProfileUpdatePage from "./components/profilePage"; import ProfileUpdatePage from "./components/profilePage";
import Dashboard from "./components/dashboard/dashboard"; import Dashboard from "./components/dashboard/dashboard";
import { LandingPage } from "./components/landingPage/LandingPage";
import PublicRoute from "./PublicRoute";
import { useAuth } from "./hooks/AuthHooks"; import { useAuth } from "./hooks/AuthHooks";
@ -60,10 +62,17 @@ const App = () => {
const NonAuthenticatedComponents = () => { const NonAuthenticatedComponents = () => {
return ( return (
<div> <div>
<NavBar />
<Routes> <Routes>
<Route path="/login" element={<LoginPage />} /> <Route exact path="/l" element={<PublicRoute />}>
<Route path="/signup" element={<SignUpPage />} /> <Route exact path="/l" element={<LandingPage />} />
</Route>
<Route exact path="/login" element={<PublicRoute />}>
<Route exact path="/login" element={<LoginPage />} />
</Route>
<Route exact path="/signup" element={<PublicRoute />}>
<Route exact path="/signup" element={<SignUpPage />} />
</Route>
<Route path="*" element={<Navigate to="/l" />} />
</Routes> </Routes>
</div> </div>
); );
@ -91,8 +100,7 @@ const AuthenticatedComponents = () => {
<Route exact path="/priority" element={<PrivateRoute />}> <Route exact path="/priority" element={<PrivateRoute />}>
<Route exact path="/priority" element={<Eisenhower />} /> <Route exact path="/priority" element={<Eisenhower />} />
</Route> </Route>
<Route path="/login" element={<LoginPage />} /> <Route path="*" element={<Navigate to="/" />} />
<Route path="/signup" element={<SignUpPage />} />
</Routes> </Routes>
</div> </div>
</div> </div>

View File

@ -3,7 +3,7 @@ import { useAuth } from "src/hooks/AuthHooks";
const PrivateRoute = () => { const PrivateRoute = () => {
const { isAuthenticated } = useAuth(); const { isAuthenticated } = useAuth();
return isAuthenticated ? <Outlet /> : <Navigate to="/login" />; return isAuthenticated ? <Outlet /> : <Navigate to="/" />;
}; };
export default PrivateRoute; export default PrivateRoute;

View File

@ -0,0 +1,9 @@
import { Navigate, Outlet } from "react-router-dom";
import { useAuth } from "src/hooks/AuthHooks";
const PublicRoute = () => {
const { isAuthenticated } = useAuth();
return isAuthenticated ? <Navigate to="/d" /> : <Outlet />;
};
export default PublicRoute;

View File

@ -1,24 +1,10 @@
import { import { Card, Grid, Tab, TabGroup, TabList, TabPanel, TabPanels, Text, Title, Legend } from "@tremor/react";
Card,
Grid,
Tab,
TabGroup,
TabList,
TabPanel,
TabPanels,
Text,
Title,
Legend,
} from "@tremor/react";
import KpiCard from "./KpiCard"; import KpiCard from "./KpiCard";
import { BarChartGraph } from "./Barchart"; import { BarChartGraph } from "./Barchart";
import DonutChartGraph from "./DonutChart"; import DonutChartGraph from "./DonutChart";
import { AreaChartGraph } from "./Areachart"; import { AreaChartGraph } from "./Areachart";
import ProgressCircleChart from "./ProgressCircle"; import ProgressCircleChart from "./ProgressCircle";
const valueFormatter = (number) =>
`$ ${new Intl.NumberFormat("us").format(number).toString()}`;
export default function Dashboard() { export default function Dashboard() {
return ( return (
<div className="flex flex-col p-12"> <div className="flex flex-col p-12">
@ -48,8 +34,7 @@ export default function Dashboard() {
<Legend <Legend
className="mt-3 mx-auto w-1/2" className="mt-3 mx-auto w-1/2"
categories={["Completed Tasks", "Assigned Tasks"]} categories={["Completed Tasks", "Assigned Tasks"]}
colors={["indigo"]} colors={["indigo"]}></Legend>
></Legend>
</Card> </Card>
<Card> <Card>
<BarChartGraph /> <BarChartGraph />
@ -60,18 +45,18 @@ export default function Dashboard() {
</Grid> </Grid>
</TabPanel> </TabPanel>
<TabPanel> <TabPanel>
<div className="h-31"> <div className="h-31">
<Card className="mx-auto h-full"> <Card className="mx-auto h-full">
<Title>Tasks</Title> <Title>Tasks</Title>
<DonutChartGraph /> <DonutChartGraph />
<br /> <br />
<Legend <Legend
className="mt-3 mx-auto w-1/2" className="mt-3 mx-auto w-1/2"
categories={["Todo Task", "Recurrence Task"]} categories={["Todo Task", "Recurrence Task"]}
colors={["rose", "yellow"]} colors={["rose", "yellow"]}
/> />
</Card> </Card>
</div> </div>
</TabPanel> </TabPanel>
</TabPanels> </TabPanels>
</TabGroup> </TabGroup>

View File

@ -0,0 +1,58 @@
export function LandingPage() {
return (
<div>
<div className="navbar bg-base-100">
<div className="navbar-start">
<a className="btn btn-ghost text-xl">TurTask</a>
</div>
<div className="navbar-end space-x-3 pr-2">
<a className="btn" href="/login">
Login
</a>
<a className="btn" href="/signup">
Sign Up
</a>
</div>
</div>
<div className="relative" id="home">
<div aria-hidden="true" className="absolute inset-0 grid grid-cols-2 -space-x-52 opacity-40">
<div className="blur-[106px] h-56 bg-gradient-to-br from-primary to-purple-400"></div>
<div className="blur-[106px] h-32 bg-gradient-to-r from-cyan-400 to-sky-300"></div>
</div>
<div className="max-w-7xl mx-auto px-6 md:px-12 xl:px-6">
<div className="relative pt-36 ml-auto">
<div className="lg:w-2/3 text-center mx-auto">
<h1 className="text-gray-900 font-bold text-5xl md:text-6xl xl:text-7xl">
Manage your task with{" "}
<span className="text-primary">
TurTask
<label className="swap swap-flip text-6xl">
<input type="checkbox" />
<div className="swap-on">😇</div>
<div className="swap-off">🥳</div>
</label>
</span>
</h1>
<p className="mt-8 text-gray-700">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Odio incidunt nam itaque sed eius modi error
totam sit illum. Voluptas doloribus asperiores quaerat aperiam. Quidem harum omnis beatae ipsum soluta!
</p>
<div className="mt-16 flex flex-wrap justify-center gap-y-4 gap-x-6">
<a
href="/login"
className="relative flex h-11 w-full items-center justify-center px-6 before:absolute before:inset-0 before:rounded-full before:bg-primary before:transition before:duration-300 hover:before:scale-105 active:duration-75 active:before:scale-95 sm:w-max">
<span className="relative text-base font-semibold text-white">Get started</span>
</a>
<a
href="#"
className="relative flex h-11 w-full items-center justify-center px-6 before:absolute before:inset-0 before:rounded-full before:border before:border-transparent before:bg-primary/10 before:bg-gradient-to-b before:transition before:duration-300 hover:before:scale-105 active:duration-75 active:before:scale-95 sm:w-max">
<span className="relative text-base font-semibold text-primary">Placeholder</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
);
}

View File

@ -1,39 +1,38 @@
import React from 'react'; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faGoogle, faGithub } from "@fortawesome/free-brands-svg-icons";
import { faGoogle, faGithub } from '@fortawesome/free-brands-svg-icons';
function Signup() { function Signup() {
return ( return (
<div className="flex items-center justify-center h-screen"> <div className="flex items-center justify-center h-screen">
<div className="flex flex-col items-center bg-white p-10 rounded-lg shadow-md"> <div className="flex flex-col items-center bg-white p-10 rounded-lg shadow-md">
<h1 className="text-4xl font-semibold mb-6">Create your account</h1> <h1 className="text-4xl font-semibold mb-6">Create your account</h1>
<p className="text-gray-700 mb-6 text-lg"> <p className="text-gray-700 mb-6 text-lg">Start spending more time on your own table.</p>
Start spending more time on your own table. <div className="font-bold">
</p> <div className="mb-4">
<div className='font-bold'> <button className="flex items-center justify-center bg-blue-500 text-white px-14 py-3 rounded-lg">
<div className="mb-4"> <span className="mr-3">
<button className="flex items-center justify-center bg-blue-500 text-white px-14 py-3 rounded-lg"> <FontAwesomeIcon icon={faGoogle} />
<span className="mr-3"><FontAwesomeIcon icon={faGoogle} /></span> </span>
Sign Up with Google Sign Up with Google
</button> </button>
</div> </div>
<div className="mb-4"> <div className="mb-4">
<button className="flex items-center justify-center bg-gray-800 text-white px-14 py-3 rounded-lg"> <button className="flex items-center justify-center bg-gray-800 text-white px-14 py-3 rounded-lg">
<span className="mr-3"><FontAwesomeIcon icon={faGithub} /></span> <span className="mr-3">
Sign Up with Github <FontAwesomeIcon icon={faGithub} />
</button> </span>
</div> Sign Up with Github
</button>
</div>
<div> <div>
<button className="bg-green-500 text-white px-14 py-3 rounded-lg"> <button className="bg-green-500 text-white px-14 py-3 rounded-lg">Sign Up with your email.</button>
Sign Up with your email. </div>
</button>
</div>
</div>
</div>
</div> </div>
); </div>
</div>
);
} }
export default Signup; export default Signup;