├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── font │ └── gilroy_bold.ttf ├── images │ ├── a_1.png │ ├── a_2.png │ ├── a_3.png │ ├── a_4.png │ ├── a_5.png │ ├── a_6.png │ ├── alon.png │ ├── beacons.png │ ├── bravado.png │ ├── causal.png │ ├── chat.png │ ├── coca_cola.png │ ├── crm.png │ ├── d_1.png │ ├── d_2.png │ ├── degrasse.png │ ├── dopt.png │ ├── dribbble.svg │ ├── f_1.png │ ├── f_2.png │ ├── f_3.png │ ├── f_4.png │ ├── f_5.png │ ├── f_6.png │ ├── fade_gradient.png │ ├── fancy_square.svg │ ├── filip.png │ ├── footer_logo.svg │ ├── hero.svg │ ├── hyperlane.png │ ├── linkedin.svg │ ├── logo.svg │ ├── m_1.png │ ├── m_2.png │ ├── menu.svg │ ├── on_deck.png │ ├── open_ai.png │ ├── pallet.png │ ├── passion_front.png │ ├── plain.png │ ├── ready_to_build.png │ ├── security_scale.png │ └── x.svg ├── next.svg └── vercel.svg ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── cards │ │ ├── FeatureCard.tsx │ │ ├── ReviewCard.tsx │ │ └── TweetCard.tsx │ ├── common │ │ ├── AnimatedBorderTrail.tsx │ │ ├── CustomHeader.tsx │ │ ├── CustomStyledHeader.tsx │ │ ├── MainButton.tsx │ │ ├── NavBar.tsx │ │ └── YoutubeIFrame.tsx │ ├── modals │ │ └── HeroYoutubeModal.tsx │ ├── sections │ │ ├── AlertSection.tsx │ │ ├── CRMSection.tsx │ │ ├── DataModellingSection.tsx │ │ ├── FooterSection.tsx │ │ ├── HeroHeaderSection.tsx │ │ ├── HeroSection.tsx │ │ ├── LovedByBuildersSection.tsx │ │ ├── MarqueeSection.tsx │ │ ├── MoreFeaturesSection.tsx │ │ ├── MultiPlayerDesignSection.tsx │ │ ├── ReadyToBuildSection.tsx │ │ └── SecurityScaleSection.tsx │ └── ui │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ └── dialog.tsx └── lib │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/font/gilroy_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/font/gilroy_bold.ttf -------------------------------------------------------------------------------- /public/images/a_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/a_1.png -------------------------------------------------------------------------------- /public/images/a_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/a_2.png -------------------------------------------------------------------------------- /public/images/a_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/a_3.png -------------------------------------------------------------------------------- /public/images/a_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/a_4.png -------------------------------------------------------------------------------- /public/images/a_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/a_5.png -------------------------------------------------------------------------------- /public/images/a_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/a_6.png -------------------------------------------------------------------------------- /public/images/alon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/alon.png -------------------------------------------------------------------------------- /public/images/beacons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/beacons.png -------------------------------------------------------------------------------- /public/images/bravado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/bravado.png -------------------------------------------------------------------------------- /public/images/causal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/causal.png -------------------------------------------------------------------------------- /public/images/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/chat.png -------------------------------------------------------------------------------- /public/images/coca_cola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/coca_cola.png -------------------------------------------------------------------------------- /public/images/crm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/crm.png -------------------------------------------------------------------------------- /public/images/d_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/d_1.png -------------------------------------------------------------------------------- /public/images/d_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/d_2.png -------------------------------------------------------------------------------- /public/images/degrasse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/degrasse.png -------------------------------------------------------------------------------- /public/images/dopt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/dopt.png -------------------------------------------------------------------------------- /public/images/dribbble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/dribbble.svg -------------------------------------------------------------------------------- /public/images/f_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/f_1.png -------------------------------------------------------------------------------- /public/images/f_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/f_2.png -------------------------------------------------------------------------------- /public/images/f_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/f_3.png -------------------------------------------------------------------------------- /public/images/f_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/f_4.png -------------------------------------------------------------------------------- /public/images/f_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/f_5.png -------------------------------------------------------------------------------- /public/images/f_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/f_6.png -------------------------------------------------------------------------------- /public/images/fade_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/fade_gradient.png -------------------------------------------------------------------------------- /public/images/fancy_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/fancy_square.svg -------------------------------------------------------------------------------- /public/images/filip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/filip.png -------------------------------------------------------------------------------- /public/images/footer_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/footer_logo.svg -------------------------------------------------------------------------------- /public/images/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/hero.svg -------------------------------------------------------------------------------- /public/images/hyperlane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/hyperlane.png -------------------------------------------------------------------------------- /public/images/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/linkedin.svg -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/images/m_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/m_1.png -------------------------------------------------------------------------------- /public/images/m_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/m_2.png -------------------------------------------------------------------------------- /public/images/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/menu.svg -------------------------------------------------------------------------------- /public/images/on_deck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/on_deck.png -------------------------------------------------------------------------------- /public/images/open_ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/open_ai.png -------------------------------------------------------------------------------- /public/images/pallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/pallet.png -------------------------------------------------------------------------------- /public/images/passion_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/passion_front.png -------------------------------------------------------------------------------- /public/images/plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/plain.png -------------------------------------------------------------------------------- /public/images/ready_to_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/ready_to_build.png -------------------------------------------------------------------------------- /public/images/security_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/security_scale.png -------------------------------------------------------------------------------- /public/images/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/images/x.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/cards/FeatureCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/cards/FeatureCard.tsx -------------------------------------------------------------------------------- /src/components/cards/ReviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/cards/ReviewCard.tsx -------------------------------------------------------------------------------- /src/components/cards/TweetCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/cards/TweetCard.tsx -------------------------------------------------------------------------------- /src/components/common/AnimatedBorderTrail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/common/AnimatedBorderTrail.tsx -------------------------------------------------------------------------------- /src/components/common/CustomHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/common/CustomHeader.tsx -------------------------------------------------------------------------------- /src/components/common/CustomStyledHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/common/CustomStyledHeader.tsx -------------------------------------------------------------------------------- /src/components/common/MainButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/common/MainButton.tsx -------------------------------------------------------------------------------- /src/components/common/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/common/NavBar.tsx -------------------------------------------------------------------------------- /src/components/common/YoutubeIFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/common/YoutubeIFrame.tsx -------------------------------------------------------------------------------- /src/components/modals/HeroYoutubeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/modals/HeroYoutubeModal.tsx -------------------------------------------------------------------------------- /src/components/sections/AlertSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/AlertSection.tsx -------------------------------------------------------------------------------- /src/components/sections/CRMSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/CRMSection.tsx -------------------------------------------------------------------------------- /src/components/sections/DataModellingSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/DataModellingSection.tsx -------------------------------------------------------------------------------- /src/components/sections/FooterSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/FooterSection.tsx -------------------------------------------------------------------------------- /src/components/sections/HeroHeaderSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/HeroHeaderSection.tsx -------------------------------------------------------------------------------- /src/components/sections/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/HeroSection.tsx -------------------------------------------------------------------------------- /src/components/sections/LovedByBuildersSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/LovedByBuildersSection.tsx -------------------------------------------------------------------------------- /src/components/sections/MarqueeSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/MarqueeSection.tsx -------------------------------------------------------------------------------- /src/components/sections/MoreFeaturesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/MoreFeaturesSection.tsx -------------------------------------------------------------------------------- /src/components/sections/MultiPlayerDesignSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/MultiPlayerDesignSection.tsx -------------------------------------------------------------------------------- /src/components/sections/ReadyToBuildSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/ReadyToBuildSection.tsx -------------------------------------------------------------------------------- /src/components/sections/SecurityScaleSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/sections/SecurityScaleSection.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiusLucky/Attio/HEAD/tsconfig.json --------------------------------------------------------------------------------