-
-
+ return (
+
+
+
+
+
+
+ scrollToFn("home")
+ }
+ />
+ {/* Hero unit */}
+
+
- {/* Hero unit */}
-
+ {/* Buttons */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
About Me
+
+
+
+ - 7+ years as a full-stack developer working with enterprise applications.
+ - Experience developing AWS Cloud Solutions along with writing Infrastructure as Code.
+ - Hobbyist Android Developer working with Compose, on custom CI/CD workflows.
+
+
+
+
+ {/* Project Cards */}
+
+
+
+
Projects
-
-
-
- {/* Buttons */}
-
-
-
-
-
-
-
-
+
+ {cards}
+
+
+
+
+
+
+
Contact
+
+
+
+ - Find me on Github
+ - Send me an email: goldy131992@gmail.com
+
+
+
+
+
-
-
-
-
-
- {/* Project Cards */}
-
- {cards}
-
- {/* Footer */}
-
-
-
- {/* End footer */}
-
-
+ {/* Footer */}
+
+
+
+ {/* End footer */}
+
+
);
}
diff --git a/app/utils.tsx b/app/utils.tsx
new file mode 100644
index 0000000..b27a6a2
--- /dev/null
+++ b/app/utils.tsx
@@ -0,0 +1,9 @@
+
+export const scrollToFn : (arg?: string) => void = (arg) => {
+ if (arg != null) {
+ let el = document.getElementById(arg);
+ if (el != null) {
+ el.scrollIntoView(true);
+ }
+ }
+ }
\ No newline at end of file