-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update ts config * updates docusaurus to v3 * Update Docusaurus configuration file * install all dependencies * change sidebar from js to ts * add tailwind config * test * add assets, constants and types for project * remove unused files from project * create banner component * create share button component * Add LegacyGateway component * Add Features component * Add ChooseTailcall component * Add Graph component to home page * Add GraphContainer component * Add MoreFeatures component * Add Partners component to display cloud partners' logos * Update Button component props * Add Discover component * Add Footer component * Add chooseTailcall constants * Refactor homepage component * Add ChooseTailcall type definition * Add home page components * Add key prop to ChooseTailcall component * Update import statements for GreaterThanUnderscoreIcon * Fix typo in ChooseTailcall component * Update Features component to include logo prop * Update partner image component names * Update partnerImages and features to use "logo" instead of "Svg" * Update GitHub logo import * Add new icons * Add HeroImage to Banner component * Update ChooseTailcall component styling * Fix styling in Features component * add assets * Add Founder type to index.d.ts * Add founders data to constants file * Add Hero component to About page * Add WhoWeAre component to About page * Add SectionTitle component * Add Founders component * Add about page component * Add AboutPage component * Add new tailwind utility classes for tiny display * Add assets * Add investors to constants file * Remove unused social media icons * Add new components to AboutPage * Add Investors component to About page * Add SocialBuzz component to About page * make hero component responsive * make who we are comp responsive * make founders responsive * make investors section responsive * Make SocialBuzz component responsive * create enterprise page * Add Hero component to enterprise section * Add EnterprisePage component * Add Partners component to EnterprisePage * add assets for enterprise features * Add enterprise features to constants * Add EnterpriseFeatures component to EnterprisePage * Add new tailwind utility classes for tiny display * Add additional enterprise features * Add MoreEnterpriseFeatures component * Add MoreEnterpriseFeatures component * Fix import order in MoreEnterpriseFeatures component * Add check-circle.svg icon * add pricing section * Fetching docs remotely * make enterprise features responsive * Make hero section responsive * make more features section responsive * make pricing section responsive * Add Grid to Footer * use correct font * add correct icon in footer * Add lottie-react package and new components * Add contact page component * Add ContactPage component * Add contact form component * Update package-lock.json and enterprise.tsx * make section responsive * Update Hello component layout * padding fix * Add Link component to Button and update props * Update banner buttons * remove unused assets * Add width prop to Button component * Fix button link in Graph component * Update MoreFeatures component and constants * Add flexbox layout to MoreFeatures component * Update Graph component's title width * Update button links in Discover component * Update GitHub link in Graph component * Fix footer links and grid alignment * Update social media links * Fix spacing in ChooseTailcall component * run counter only when in view * fix git overflow issue * update benchmark links * add key for loop * make home page tablet responsive * minor fixes * minor ui fixes * make about page tablet responsive * make enterprise section tablet responsive * make contact us tablet responsive * Add email and message state variables and update input and textarea elements * Add disabled prop to Button component * Add disabled attribute to Send message button * Fix alignment issue in Banner component * Add Grid component to Hero section * Update Pricing component styles * Design changes for docs * Add CheckCircle icon to MoreEnterpriseFeatures component * Update Graph component with visualizations * Update GraphContainer component * Update Button and Footer bg color * Add check-circle-broken.svg icon * add config section as per design * make section responsive * Update max-width in Discover component * Removed pat token * update url links * fix import statmt * run animation on view * change css for radio button * Add stage selection and send data to Zapier webhook * Add cursor pointer to radio buttons * Fix issue with resetting form fields * Update founder images * Changes in header * Mobile header changes * css changes * modify more features as per design * Update pricing plan buttons with href * Update MoreEnterpriseFeatures component styles and remove duplicate feature * Fix padding and margin in custom.css * minor fixes * Docs change * minor fixes * change file name * Deleted docs * Mobile header changes * Docs search * Commenting out header * remove unused assets * fix constants types * Fix link styling in Footer component * Refactor Button component styles * Refactor partner logo rendering in Partners component * Add useRef hook and animation control * Update Graph component with duration and delay props * Fix logo rendering in Features component * Update ChooseTailcall component * Update "Get Started" button link * Update font size in EnterpriseFeaturesCard * Commented out Investors component * Fix CSS formatting and styles * Update letter spacing in tailwind.config.ts * Update fetchGithubStars function to handle null response * Update ChooseTailcall component styling * minor fixes * Update button href in MoreFeatures component * Fix import statement in SearchBar.js and format copyright text in Footer.tsx * Update Configuration component styles * source docs from locally * bug fixes as per notion doc * Fix Marquee autoFill in Partners component * Update Footer styles * remove console errors by adding react-visibility-sensor * Update MoreFeatures component styling * Update Hello component styling * fix for issues raised by tushar * Github stars being fetched on runtime * Refactor GraphContainer component * update graph numbers * change js files to tsx/ts files * Add hover effect to GithubStarsButton * bug fixes * remove unused hooks * fix ts error * add google analytics for home page load * use js file instead of tsx * use tsx extn * use variable for colors in all places --------- Co-authored-by: Rajat <[email protected]>
- Loading branch information
1 parent
a4cfcc2
commit f62e6e4
Showing
27 changed files
with
598 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,7 +65,7 @@ const Hello = () => { | |
value={email} | ||
onChange={(e) => setEmail(e.target.value)} | ||
style={{ | ||
border: "1px solid #CECECF", | ||
border: "1px solid var(--ifm-color-gray-700)", | ||
}} | ||
className="rounded-lg font-space-grotesk h-11 w-[95%] sm:w-[480px] p-3 text-content-small outline-none focus:border-x-tailCall-light-700" | ||
placeholder="[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.