From f8aa5581f44e58494b47c1fd5cfd07fd67c5e639 Mon Sep 17 00:00:00 2001
From: maximdudai
Date: Sat, 11 May 2024 16:13:26 +0100
Subject: [PATCH 1/5] Navbar component
- changed nav links hover style
- Star icon color when hover
- Download button styles
- Download button name -> Start Your Journey
---
src/components/Hero.jsx | 8 +++++++-
src/components/NavLink.jsx | 4 ++--
src/components/StarButton/index.tsx | 8 ++++----
src/images/.DS_Store | Bin 6148 -> 6148 bytes
src/images/logos/.DS_Store | Bin 6148 -> 6148 bytes
5 files changed, 13 insertions(+), 7 deletions(-)
diff --git a/src/components/Hero.jsx b/src/components/Hero.jsx
index 1cb0708..cffba67 100644
--- a/src/components/Hero.jsx
+++ b/src/components/Hero.jsx
@@ -48,7 +48,13 @@ export function Hero() {
too! 🎉
-
+
{/*
From bd995a2198976a3f3154f181837397ade39a6866 Mon Sep 17 00:00:00 2001
From: maximdudai
Date: Sun, 12 May 2024 12:35:32 +0100
Subject: [PATCH 3/5] Call To Action
Download button prev. label
---
src/components/CallToAction.jsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/CallToAction.jsx b/src/components/CallToAction.jsx
index e5612e2..8558bf6 100644
--- a/src/components/CallToAction.jsx
+++ b/src/components/CallToAction.jsx
@@ -33,7 +33,7 @@ export function CallToAction() {
className="mt-10 rounded-md px-10 py-2 text-lg font-semibold uppercase !text-emerald-500"
href="/download"
>
- Begin the Magic
+ Download Now
From 3bd1bf78786d7618488e00fe4dd7edb2bb661143 Mon Sep 17 00:00:00 2001
From: maximdudai
Date: Sun, 12 May 2024 12:58:31 +0100
Subject: [PATCH 4/5] Download Page
- icon for each download (OS) option
---
src/components/CallToAction.jsx | 1 +
src/pages/download.tsx | 52 +++++++++++++++++++++++++--------
2 files changed, 41 insertions(+), 12 deletions(-)
diff --git a/src/components/CallToAction.jsx b/src/components/CallToAction.jsx
index 8558bf6..51581f8 100644
--- a/src/components/CallToAction.jsx
+++ b/src/components/CallToAction.jsx
@@ -33,6 +33,7 @@ export function CallToAction() {
className="mt-10 rounded-md px-10 py-2 text-lg font-semibold uppercase !text-emerald-500"
href="/download"
>
+
Download Now
diff --git a/src/pages/download.tsx b/src/pages/download.tsx
index 351fd60..778784c 100644
--- a/src/pages/download.tsx
+++ b/src/pages/download.tsx
@@ -1,17 +1,18 @@
import TimeAgo from 'javascript-time-ago';
import en from 'javascript-time-ago/locale/en';
-import {usePlausible} from 'next-plausible';
+import { usePlausible } from 'next-plausible';
import Head from 'next/head';
-import {Button} from '@/components/Button';
-import {Header} from '@/components/Header';
-import {Footer} from '@/components/Footer';
-import {Container} from '@/components/Container';
-import {BlurBG} from '@/components/BlurBG';
-import {useEffect, useState} from 'react';
+import { Button } from '@/components/Button';
+import { Header } from '@/components/Header';
+import { Footer } from '@/components/Footer';
+import { Container } from '@/components/Container';
+import { BlurBG } from '@/components/BlurBG';
+import { useEffect, useState } from 'react';
import allDevicesSideBySide from '@/images/screenshots/all-devices-side-by-side.png';
import Image from 'next/image';
-import {SponsorsAndContributors} from '@/components/SponsorsAndContributors';
+import { SponsorsAndContributors } from '@/components/SponsorsAndContributors';
+import { Icon } from '@iconify/react';
TimeAgo.addDefaultLocale(en);
const timeAgo = new TimeAgo('en-US');
@@ -79,26 +80,53 @@ export default function Download() {
plausible('appDownload', {props: {arch: 'mac-silicon'}})}
+ onClick={() => plausible('appDownload', { props: { arch: 'mac-silicon' } })}
+ className='flex items-center gap-1'
>
+
Mac (Apple Silicon)
plausible('appDownload', {props: {arch: 'mac-intel'}})}
+ onClick={() => plausible('appDownload', { props: { arch: 'mac-intel' } })}
+ className='flex items-center gap-1'
+
>
+
Mac (Intel)
plausible('appDownload', {props: {arch: 'windows'}})}
+ onClick={() => plausible('appDownload', { props: { arch: 'windows' } })}
+ className='flex items-center gap-1'
+
>
+
Windows
plausible('appDownload', {props: {arch: 'linux'}})}
+ onClick={() => plausible('appDownload', { props: { arch: 'linux' } })}
+ className='flex items-center gap-1'
+
>
+
Linux
From 59901c44bbad34d244986e11b522e0e4345b1e78 Mon Sep 17 00:00:00 2001
From: maximdudai
Date: Sun, 12 May 2024 14:10:30 +0100
Subject: [PATCH 5/5] Download Page
- Removed icons hover color
---
src/pages/download.tsx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/pages/download.tsx b/src/pages/download.tsx
index 778784c..4212229 100644
--- a/src/pages/download.tsx
+++ b/src/pages/download.tsx
@@ -86,7 +86,7 @@ export default function Download() {
Mac (Apple Silicon)
@@ -99,7 +99,7 @@ export default function Download() {
Mac (Intel)
@@ -112,7 +112,7 @@ export default function Download() {
Windows
@@ -125,7 +125,7 @@ export default function Download() {
Linux