From eaab7668ee615d1d5b960a38eed0f0c61f5b7009 Mon Sep 17 00:00:00 2001 From: Jesica Date: Mon, 26 Jun 2023 19:54:06 +0700 Subject: [PATCH 1/9] add new svg icon --- components/MastHead.js | 16 +----- public/images/masthead.svg | 110 +++++++++++++++++++++++++++++++++++++ 2 files changed, 111 insertions(+), 15 deletions(-) create mode 100644 public/images/masthead.svg diff --git a/components/MastHead.js b/components/MastHead.js index 8e0fad5..6c727ac 100644 --- a/components/MastHead.js +++ b/components/MastHead.js @@ -1,6 +1,4 @@ import Link from "next/link" -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faBoxOpen, faBrain } from '@fortawesome/free-solid-svg-icons' import { motion } from "framer-motion" import Image from 'next/image'; @@ -33,27 +31,15 @@ export default function Home() { repeatDelay: 0, }} > - {/* - - Large Language Model - */} Large Language Model -

AI for Humans. diff --git a/public/images/masthead.svg b/public/images/masthead.svg new file mode 100644 index 0000000..c02e67c --- /dev/null +++ b/public/images/masthead.svg @@ -0,0 +1,110 @@ + +Created with Fabric.js 3.5.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From aeb1140e1bf7fef9581cdca8b76de92b6b65f24a Mon Sep 17 00:00:00 2001 From: Jesica Date: Mon, 26 Jun 2023 22:24:00 +0700 Subject: [PATCH 2/9] create seperate animation for each svg --- components/MastHead.js | 6 ++-- public/images/new_masthead.svg | 60 ++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 3 deletions(-) create mode 100644 public/images/new_masthead.svg diff --git a/components/MastHead.js b/components/MastHead.js index 6c727ac..c9d1632 100644 --- a/components/MastHead.js +++ b/components/MastHead.js @@ -34,9 +34,9 @@ export default function Home() { Large Language Model diff --git a/public/images/new_masthead.svg b/public/images/new_masthead.svg new file mode 100644 index 0000000..52aaca2 --- /dev/null +++ b/public/images/new_masthead.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file From 94bb3875b52f62f5d0a5ff6662140a592f4d7d90 Mon Sep 17 00:00:00 2001 From: Jesica Date: Wed, 28 Jun 2023 14:36:54 +0700 Subject: [PATCH 3/9] make animation for subtle --- public/images/masthead.svg | 110 --------------------------------- public/images/new_masthead.svg | 4 +- 2 files changed, 2 insertions(+), 112 deletions(-) delete mode 100644 public/images/masthead.svg diff --git a/public/images/masthead.svg b/public/images/masthead.svg deleted file mode 100644 index c02e67c..0000000 --- a/public/images/masthead.svg +++ /dev/null @@ -1,110 +0,0 @@ - -Created with Fabric.js 3.5.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/public/images/new_masthead.svg b/public/images/new_masthead.svg index 52aaca2..ee2f442 100644 --- a/public/images/new_masthead.svg +++ b/public/images/new_masthead.svg @@ -9,7 +9,7 @@ transform: scale(1, 1); } 50% { - transform: scale(1.1, 1.1); + transform: scale(1.05, 1.05); } 100% { transform: scale(1, 1); @@ -20,7 +20,7 @@ transform: scale(1, 1); } 50% { - transform: scale(0.9, 0.9); + transform: scale(0.95, 0.95); } 100% { transform: scale(1, 1); From 8673d0fc9be0c0474bf0d5f519bc4d9635934138 Mon Sep 17 00:00:00 2001 From: Jesica Date: Tue, 18 Jul 2023 14:33:00 -0400 Subject: [PATCH 4/9] add bubble, eyes, hand seperate svg file --- public/images/noun-chat-bubble.svg | 1 + public/images/noun-robot-61968.svg | 1 + public/images/noun-robot-hand.svg | 1 + 3 files changed, 3 insertions(+) create mode 100644 public/images/noun-chat-bubble.svg create mode 100644 public/images/noun-robot-61968.svg create mode 100644 public/images/noun-robot-hand.svg diff --git a/public/images/noun-chat-bubble.svg b/public/images/noun-chat-bubble.svg new file mode 100644 index 0000000..74efc30 --- /dev/null +++ b/public/images/noun-chat-bubble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/noun-robot-61968.svg b/public/images/noun-robot-61968.svg new file mode 100644 index 0000000..0d1bb6c --- /dev/null +++ b/public/images/noun-robot-61968.svg @@ -0,0 +1 @@ +Created by Herbert Spencerfrom the Noun Project \ No newline at end of file diff --git a/public/images/noun-robot-hand.svg b/public/images/noun-robot-hand.svg new file mode 100644 index 0000000..a039077 --- /dev/null +++ b/public/images/noun-robot-hand.svg @@ -0,0 +1 @@ + \ No newline at end of file From 18ca1f6737fc4a9cfb59f82475d76b9d6e06e4b8 Mon Sep 17 00:00:00 2001 From: Jesica Date: Tue, 18 Jul 2023 14:51:39 -0400 Subject: [PATCH 5/9] add bubble,eye,hand svg --- components/MastHead.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/MastHead.js b/components/MastHead.js index d3d6b3a..fc23389 100644 --- a/components/MastHead.js +++ b/components/MastHead.js @@ -8,6 +8,11 @@ import IndustriesGrid from '@components/IndustriesGrid' import styles from './MastHead.module.css' +// Import the SVG files as React components +import EyeSvg from 'public/images/; +import HandSvg from './hand.svg'; +import BubbleSvg from './bubble.svg'; + export default function Home() { const [feedbackData, setFeedbackData] = useState({ name: '', From 86bd5d703772f903b333c5a7cb0a26726f652dd6 Mon Sep 17 00:00:00 2001 From: Jesica Date: Tue, 18 Jul 2023 14:54:11 -0400 Subject: [PATCH 6/9] add bubble, eye, hand --- components/MastHead.js | 9 ++++----- public/images/{noun-chat-bubble.svg => bubble.svg} | 2 +- public/images/{noun-robot-61968.svg => eye.svg} | 0 public/images/{noun-robot-hand.svg => hand.svg} | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) rename public/images/{noun-chat-bubble.svg => bubble.svg} (72%) rename public/images/{noun-robot-61968.svg => eye.svg} (100%) rename public/images/{noun-robot-hand.svg => hand.svg} (91%) diff --git a/components/MastHead.js b/components/MastHead.js index fc23389..98b8281 100644 --- a/components/MastHead.js +++ b/components/MastHead.js @@ -7,11 +7,10 @@ import EmailForm from '@components/EmailForm' import IndustriesGrid from '@components/IndustriesGrid' import styles from './MastHead.module.css' - -// Import the SVG files as React components -import EyeSvg from 'public/images/; -import HandSvg from './hand.svg'; -import BubbleSvg from './bubble.svg'; +import Eye from 'public/images/eye.svg'; +import Hand from 'public/images/hand.svg'; +import Bubble from 'public/images/bubble.svg'; +import Icon from 'public/images/favicon.svg'; export default function Home() { const [feedbackData, setFeedbackData] = useState({ diff --git a/public/images/noun-chat-bubble.svg b/public/images/bubble.svg similarity index 72% rename from public/images/noun-chat-bubble.svg rename to public/images/bubble.svg index 74efc30..4395565 100644 --- a/public/images/noun-chat-bubble.svg +++ b/public/images/bubble.svg @@ -1 +1 @@ - \ No newline at end of file +Created by kiddofrom the Noun Project \ No newline at end of file diff --git a/public/images/noun-robot-61968.svg b/public/images/eye.svg similarity index 100% rename from public/images/noun-robot-61968.svg rename to public/images/eye.svg diff --git a/public/images/noun-robot-hand.svg b/public/images/hand.svg similarity index 91% rename from public/images/noun-robot-hand.svg rename to public/images/hand.svg index a039077..6678f91 100644 --- a/public/images/noun-robot-hand.svg +++ b/public/images/hand.svg @@ -1 +1 @@ - \ No newline at end of file +Created by dDarafrom the Noun Project \ No newline at end of file From 7aad2e04167e0de2c08b365719bc36d7d2a070c4 Mon Sep 17 00:00:00 2001 From: Jesica Date: Wed, 19 Jul 2023 09:54:44 -0400 Subject: [PATCH 7/9] add image tags --- components/MastHead.js | 43 ++++++++++++++++++++++++++++------------ public/images/bubble.svg | 2 +- public/images/eye.svg | 2 +- public/images/hand.svg | 2 +- 4 files changed, 33 insertions(+), 16 deletions(-) diff --git a/components/MastHead.js b/components/MastHead.js index 98b8281..f4b6808 100644 --- a/components/MastHead.js +++ b/components/MastHead.js @@ -7,10 +7,6 @@ import EmailForm from '@components/EmailForm' import IndustriesGrid from '@components/IndustriesGrid' import styles from './MastHead.module.css' -import Eye from 'public/images/eye.svg'; -import Hand from 'public/images/hand.svg'; -import Bubble from 'public/images/bubble.svg'; -import Icon from 'public/images/favicon.svg'; export default function Home() { const [feedbackData, setFeedbackData] = useState({ @@ -29,7 +25,7 @@ export default function Home() { OpenAdapt .AI

-
+
- Large Language Model + Bubble + Eye + Hand + Large Language Model
+

AI for Humans.

diff --git a/public/images/bubble.svg b/public/images/bubble.svg index 4395565..74efc30 100644 --- a/public/images/bubble.svg +++ b/public/images/bubble.svg @@ -1 +1 @@ -Created by kiddofrom the Noun Project \ No newline at end of file + \ No newline at end of file diff --git a/public/images/eye.svg b/public/images/eye.svg index 0d1bb6c..e4c2407 100644 --- a/public/images/eye.svg +++ b/public/images/eye.svg @@ -1 +1 @@ -Created by Herbert Spencerfrom the Noun Project \ No newline at end of file + \ No newline at end of file diff --git a/public/images/hand.svg b/public/images/hand.svg index 6678f91..a039077 100644 --- a/public/images/hand.svg +++ b/public/images/hand.svg @@ -1 +1 @@ -Created by dDarafrom the Noun Project \ No newline at end of file + \ No newline at end of file From edcb8ee20ac74373cb80b158ccf15f850e10f2b9 Mon Sep 17 00:00:00 2001 From: Jesica Date: Wed, 19 Jul 2023 20:37:15 -0400 Subject: [PATCH 8/9] animate --- components/MastHead.js | 62 ++++++++++++++++++++++++++++++------------ 1 file changed, 45 insertions(+), 17 deletions(-) diff --git a/components/MastHead.js b/components/MastHead.js index f4b6808..ae88093 100644 --- a/components/MastHead.js +++ b/components/MastHead.js @@ -25,7 +25,7 @@ export default function Home() { OpenAdapt .AI -
+
Bubble Eye - Hand - Large Language Model + + + Eye + + + Hand +
+

AI for Humans.

From 8bb133cb6a0197df9143673c75497aebd344a296 Mon Sep 17 00:00:00 2001 From: Jesica Date: Wed, 19 Jul 2023 20:37:32 -0400 Subject: [PATCH 9/9] crop eye --- public/images/eye.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/images/eye.svg b/public/images/eye.svg index e4c2407..7f0e692 100644 --- a/public/images/eye.svg +++ b/public/images/eye.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file