From a0d1a4f043f7b4197390c8cd5a5d5f20b5ae41c4 Mon Sep 17 00:00:00 2001 From: OudomMunint Date: Wed, 21 Aug 2024 19:31:46 +1000 Subject: [PATCH 1/7] Update meta description #92 --- public/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index 0c4d7b1..a822b8a 100644 --- a/public/index.html +++ b/public/index.html @@ -9,10 +9,9 @@ - Studio Zed - + From 01f42d7fa271277b7962fedc3d30c3178e99f673 Mon Sep 17 00:00:00 2001 From: OudomMunint Date: Wed, 21 Aug 2024 19:32:11 +1000 Subject: [PATCH 2/7] UI - Regression: Vertical overflow #68 work around --- src/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/style.css b/src/style.css index afc20f7..41f0fcb 100644 --- a/src/style.css +++ b/src/style.css @@ -33,8 +33,8 @@ html { /* Must add this unique class in order for home to take BG */ .HomeHeroSection { position: relative !important; - height: 100%; - margin-bottom: 27px; + height: 90vh; + /* margin-bottom: 27px; */ /* background: linear-gradient( to bottom left, rgba(0, 0, 0, 0.678), rgba(255,192,203, 0.200), rgba(22, 17, 37, 0.863) ); */ /* background: linear-gradient(to top, #30cfd0 -50%, #330867 100%); */ background-color: rgb(227, 227, 227); @@ -467,7 +467,7 @@ a { bottom: 0% !important; padding-top: 10px !important; padding-bottom: 8px !important ; - margin-top: 113px; + margin-top: 112px; } .footer-copywright { text-align: center !important; From 7887215a640fabbc0084ed2c0af170359cc56efb Mon Sep 17 00:00:00 2001 From: OudomMunint Date: Wed, 21 Aug 2024 19:32:28 +1000 Subject: [PATCH 3/7] Footer & Links #94 --- src/components/Footer.js | 66 +++++++++++----------------------------- 1 file changed, 18 insertions(+), 48 deletions(-) diff --git a/src/components/Footer.js b/src/components/Footer.js index 88b2d3a..d858d40 100644 --- a/src/components/Footer.js +++ b/src/components/Footer.js @@ -14,17 +14,19 @@ function Footer() { - {/*

Powered By ReactJs, NodeJs & ExpressJs

*/} -

Copyright © {year} Studio Zed

+

Copyright © {year} Studio Zed | Powered by ReactJs, NodeJs & Netlify

  • @@ -35,6 +37,10 @@ function Footer() { style={{ color: "white" }} target="_blank" rel="noopener noreferrer" + data-toggle="tooltip" + data-placement="top" + title="Twitter - Coming Soon" + onClick={(e) => e.preventDefault()} > @@ -45,6 +51,10 @@ function Footer() { style={{ color: "white" }} target="_blank" rel="noopener noreferrer" + data-toggle="tooltip" + data-placement="top" + title="LinkedIn - Coming Soon" + onClick={(e) => e.preventDefault()} > @@ -55,59 +65,19 @@ function Footer() { style={{ color: "white" }} target="_blank" rel="noopener noreferrer" + data-toggle="tooltip" + data-placement="top" + title="Instagram - Coming Soon" + onClick={(e) => e.preventDefault()} >
- {/* - - */}
); } -export default Footer; +export default Footer; \ No newline at end of file From 5641702c1b6720f61d5357a0c4790f7a4c4715b4 Mon Sep 17 00:00:00 2001 From: OudomMunint Date: Wed, 21 Aug 2024 19:32:40 +1000 Subject: [PATCH 4/7] UI - Navbar state issue. #93 --- src/components/Navbar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Navbar.js b/src/components/Navbar.js index beb5186..d5669ee 100644 --- a/src/components/Navbar.js +++ b/src/components/Navbar.js @@ -21,10 +21,10 @@ function NavBar() { const [navColour, updateNavbar] = useState(false); function scrollHandler() { - if (window.scrollY >= -1) { + if (window.scrollY >= 1) { updateNavbar(true); } else { - updateNavbar(true); + updateNavbar(false); } } From 57ecea894b9a09a04e118c60776a8fb66f65f2e0 Mon Sep 17 00:00:00 2001 From: OudomMunint Date: Wed, 21 Aug 2024 19:33:33 +1000 Subject: [PATCH 5/7] Changed home icon from emoji to svg, should improve FCP & LCP + code clean up --- src/Assets/paintbrush.svg | 21 ++++++++++++++++ src/components/Home/Home.js | 9 ++++--- src/components/Home/Home2.js | 49 ------------------------------------ 3 files changed, 27 insertions(+), 52 deletions(-) create mode 100644 src/Assets/paintbrush.svg diff --git a/src/Assets/paintbrush.svg b/src/Assets/paintbrush.svg new file mode 100644 index 0000000..5bd6021 --- /dev/null +++ b/src/Assets/paintbrush.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/components/Home/Home.js b/src/components/Home/Home.js index 79f1f28..2bcffb3 100644 --- a/src/components/Home/Home.js +++ b/src/components/Home/Home.js @@ -5,6 +5,7 @@ import Particle from "../Particle"; //import Home2 from "./Home2"; import Type from "./Type"; import {ReactComponent as Design} from "../../Assets/design.svg"; +import {ReactComponent as HomeLogo} from "../../Assets/paintbrush.svg"; // import { // AiFillGithub, @@ -24,9 +25,11 @@ function Home() {

Welcome!{" "} - - 🖋️ - + {/* + 🖌️ + + */} +

diff --git a/src/components/Home/Home2.js b/src/components/Home/Home2.js index 3738e5e..8b272d6 100644 --- a/src/components/Home/Home2.js +++ b/src/components/Home/Home2.js @@ -63,55 +63,6 @@ function Home2() { - {/* - -

FIND US ON

-

- Feel free to connect with me -

- - -
*/} {/* about end */} From 98aa51ddd29e549ee586b317a993cb2de76a363f Mon Sep 17 00:00:00 2001 From: OudomMunint Date: Wed, 21 Aug 2024 19:33:46 +1000 Subject: [PATCH 6/7] Code clean up --- src/components/About/About.js | 27 --------------------------- src/components/About/Github.js | 4 ++-- 2 files changed, 2 insertions(+), 29 deletions(-) diff --git a/src/components/About/About.js b/src/components/About/About.js index bc171f1..be9ba08 100644 --- a/src/components/About/About.js +++ b/src/components/About/About.js @@ -27,28 +27,6 @@ function About() { - {/* - -

- Know Who I'M -

- - - - about - -
*/}

Who we work with

@@ -56,11 +34,6 @@ function About() { - {/*

- Tools I use -

- */} - {/* */}
diff --git a/src/components/About/Github.js b/src/components/About/Github.js index 2ba6e32..b7f4297 100644 --- a/src/components/About/Github.js +++ b/src/components/About/Github.js @@ -6,7 +6,7 @@ function Github() { return (

- Days I Code + My Github Contributions

Date: Wed, 21 Aug 2024 19:38:51 +1000 Subject: [PATCH 7/7] chore: Update tag to v1.5.5.1 in release-action workflow --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b9dcc17..9e4836d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,4 +45,4 @@ jobs: uses: ncipollo/release-action@v1.14.0 with: artifacts: "react-github-actions-build" - tag: v1.5.5 \ No newline at end of file + tag: v1.5.5.1 \ No newline at end of file