Skip to content

Commit

Permalink
Client Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sukhendu2002 committed Mar 16, 2024
1 parent 101d300 commit 3616ffd
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 44 deletions.
1 change: 1 addition & 0 deletions client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script defer src="https://eu.umami.is/script.js" data-website-id="de9ff6d2-fadc-4860-a016-10d2c80688a7"></script>
</body>

</html>
76 changes: 38 additions & 38 deletions client/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,48 +4,48 @@

@layer base {
:root {
--background: 130 25% 95%;
--foreground: 130 5% 4%;
--card: 130 25% 90%;
--card-foreground: 130 5% 10%;
--popover: 130 25% 95%;
--popover-foreground: 130 95% 4%;
--primary: 130 95% 69%;
--primary-foreground: 0 0% 0%;
--secondary: 130 25% 70%;
--secondary-foreground: 0 0% 0%;
--muted: 92 25% 85%;
--muted-foreground: 130 5% 35%;
--accent: 92 25% 80%;
--accent-foreground: 130 5% 10%;
--destructive: 0 50% 30%;
--destructive-foreground: 130 5% 90%;
--border: 130 25% 50%;
--input: 130 25% 18%;
--ring: 130 95% 69%;
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
--card: 0 0% 100%;
--card-foreground: 240 10% 3.9%;
--popover: 0 0% 100%;
--popover-foreground: 240 10% 3.9%;
--primary: 240 5.9% 10%;
--primary-foreground: 0 0% 98%;
--secondary: 240 4.8% 95.9%;
--secondary-foreground: 240 5.9% 10%;
--muted: 240 4.8% 95.9%;
--muted-foreground: 240 3.8% 46.1%;
--accent: 240 4.8% 95.9%;
--accent-foreground: 240 5.9% 10%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 98%;
--border: 240 5.9% 90%;
--input: 240 5.9% 90%;
--ring: 240 5.9% 10%;
--radius: 0.5rem;
}

.dark {
--background: 240 10% 3.9%;
--foreground: 130 5% 90%;
--card: 130 25% 4%;
--card-foreground: 130 5% 90%;
--popover: 130 25% 5%;
--popover-foreground: 130 5% 90%;
--primary: 142.1 76.2% 36.3%;
--primary-foreground: 0 0% 0%;
--secondary: 130 25% 10%;
--secondary-foreground: 0 0% 100%;
--muted: 92 25% 15%;
--muted-foreground: 130 5% 60%;
--accent: 92 25% 15%;
--accent-foreground: 130 5% 90%;
--destructive: 0 50% 30%;
--destructive-foreground: 130 5% 90%;
--border: 130 25% 18%;
--input: 130 25% 18%;
--ring: 130 95% 69%;
--radius: 0.5rem;
--foreground: 0 0% 98%;
--card: 240 10% 3.9%;
--card-foreground: 0 0% 98%;
--popover: 240 10% 3.9%;
--popover-foreground: 0 0% 98%;
--primary: 0 0% 98%;
--primary-foreground: 240 5.9% 10%;
--secondary: 240 3.7% 15.9%;
--secondary-foreground: 0 0% 98%;
--muted: 240 3.7% 15.9%;
--muted-foreground: 240 5% 64.9%;
--accent: 240 3.7% 15.9%;
--accent-foreground: 0 0% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 98%;
--border: 240 3.7% 15.9%;
--input: 240 3.7% 15.9%;
--ring: 240 4.9% 83.9%;
}
}

Expand Down
8 changes: 4 additions & 4 deletions client/src/pages/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Landing = () => {
>
Follow along on Twitter
</Link>
<h1 className="font-heading font-semibold text-3xl sm:text-5xl md:text-6xl lg:text-7xl">
<h1 className="font-heading font-bold text-3xl sm:text-5xl md:text-6xl lg:text-7xl">
Keep Your Websites Up and Running with Uplyze
</h1>
<p className="max-w-[42rem] leading-normal text-muted-foreground sm:text-xl sm:leading-8">
Expand Down Expand Up @@ -139,14 +139,14 @@ const Landing = () => {
Sign up for our free trial and experience the power of proactive
website monitoring and uptime tracking. Enjoy peace of mind and keep
your websites running smoothly.
<a
href="#"
<Link
to="/signup"
target="_blank"
rel="noreferrer"
className="underline underline-offset-4"
>
Start Free Trial
</a>
</Link>
.{" "}
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const Login: React.FC<LoginProps> = ({ onLogin }) => {
return (
<div className="mx-auto flex w-full flex-col justify-center space-y-6 sm:w-[350px] mt-10 lg:mt-20">
<div className="flex flex-col space-y-2 text-center">
<Command className="mx-auto h-6 w-6" />
{/* <Command className="mx-auto h-6 w-6" /> */}
<h1 className="text-2xl font-semibold tracking-tight">Welcome back</h1>
<p className="text-sm text-muted-foreground">
Enter your email and password to sign in
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/SignUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const SignUp = () => {
return (
<div className="mx-auto flex w-full flex-col justify-center space-y-6 sm:w-[350px] mt-10 lg:mt-20">
<div className="flex flex-col space-y-2 text-center">
<Command className="mx-auto h-6 w-6" />
{/* <Command className="mx-auto h-6 w-6" /> */}
<h1 className="text-2xl font-semibold tracking-tight">
Sign Up for Uplyze
</h1>
Expand Down

0 comments on commit 3616ffd

Please sign in to comment.