diff --git a/public/index.html b/public/index.html
index f4d0266..ddd39da 100644
--- a/public/index.html
+++ b/public/index.html
@@ -350,6 +350,12 @@
Get in Touch
+
+
+
+
+
+
diff --git a/public/index.js b/public/index.js
new file mode 100644
index 0000000..6b33aca
--- /dev/null
+++ b/public/index.js
@@ -0,0 +1,13 @@
+var tl = gsap.timeline()
+tl.from("#nav .icon",{
+ opacity:0,
+ delay:1,
+ duration:1,
+ y:-30
+})
+tl.from("#right a",{
+ opacity:0,
+ duration:1,
+ y:-30,
+ stagger:0.3
+})
\ No newline at end of file