Skip to content
This repository was archived by the owner on Jan 26, 2024. It is now read-only.

Fixed Login page alignment and Website Title #75

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>ToDo App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Landing/Landing.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Landing = () => {
icon: github(10),
},
{
href: "https://twitter.com/appwrite_io",
href: "https://twitter.com/appwrite",
icon: twitter(10),
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Login/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Login = ({ dispatch }) => {
return register ? (
<SignUp setRegister={setRegister} dispatch={dispatch} />
) : (
<section className="container h-screen mx-auto flex">
<section className="container h-screen mx-auto flex justify-center items-center">
<div className="flex-grow flex flex-col max-w-xl justify-center p-6">
<h1 className="text-6xl font-bold">Login</h1>
<p className="mt-6">
Expand Down