-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump @theguild/components * Bump components to snapshot * Modify Tailwind config * Add a font, footer and navmenu * Bump Components * Disable autoImportThemeStyle * Add draft FAQs * Add sections reused between websites * Comment out FrequentlyAskedQuestions * Add dev-ex-cards * Add favicon.svg * Add eslint-plugin-tailwindcss * Add a hero section * Remove FAQs until they are needed * Fix spacing * Add TypeSafeCards * Add a todo comment * chore(dependencies): updated changesets for modified dependencies * chore(dependencies): updated changesets for modified dependencies * Add plugins search, tweak plugins icons * Add postcss-nesting * Add products, the-guild and gql foundation to _meta.ts * Tweak margin * Add ExploreMainProductCards and update texts * Colocate plugin icons with plugins.ts * Update modules icon to a temp one * Tweak Vue icon * Update Hasura icon * Update icons * Change logos in navmenu and footer * Tweak footer logo * Remove the yellow CTA section * Use stable version, tweak margins, hide hamburger menu footer with theme switcher * Update website/src/components/hero/index.tsx Co-authored-by: Dimitri POSTOLOV <[email protected]> * Update website/src/components/hero/index.tsx Co-authored-by: Dimitri POSTOLOV <[email protected]> * Update website/src/components/hero/index.tsx Co-authored-by: Dimitri POSTOLOV <[email protected]> * Update website/public/favicon.svg Co-authored-by: Dimitri POSTOLOV <[email protected]> * Update website/public/favicon.svg Co-authored-by: Dimitri POSTOLOV <[email protected]> * Move eslint plugin dep and use a version that works * Update lockfile * Update ESLint and Tailwind configs * Add missing Tailwind dependency, remove promoted line from config, bundler resolution * Turn PostCSS config to mjs * Add a missing dependency postcss-lightningcss * Update website/src/components/hero/index.tsx Co-authored-by: Dimitri POSTOLOV <[email protected]> * Bump and format * Move CSS vars to body * Bump components * Build again * Configure .developerMenu in navigation * Bump Components * Bump Components to include wider navmenu --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Dimitri POSTOLOV <[email protected]>
- Loading branch information
1 parent
fa64fbf
commit 747803b
Showing
57 changed files
with
2,810 additions
and
4,409 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
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 |
---|---|---|
|
@@ -48,7 +48,7 @@ | |
"@babel/preset-typescript": "7.24.7", | ||
"@changesets/changelog-github": "0.5.0", | ||
"@changesets/cli": "2.27.7", | ||
"@theguild/eslint-config": "0.12.0", | ||
"@theguild/eslint-config": "0.13.0", | ||
"@theguild/prettier-config": "0.1.1", | ||
"@types/jest": "28.1.8", | ||
"babel-jest": "29.7.0", | ||
|
@@ -69,7 +69,8 @@ | |
"ts-node": "10.9.2", | ||
"tslib": "2.6.3", | ||
"tsx": "4.17.0", | ||
"typescript": "5.5.4" | ||
"typescript": "5.5.4", | ||
"eslint-plugin-tailwindcss": "npm:@hasparus/[email protected]" | ||
}, | ||
"lint-staged": { | ||
"packages/**/src/**/*.{ts,tsx}": [ | ||
|
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import config from '@theguild/tailwind-config/postcss.config'; | ||
|
||
export default { | ||
...config, | ||
plugins: { | ||
...config.plugins, | ||
'postcss-nesting': {}, | ||
}, | ||
}; |
1,989 changes: 0 additions & 1,989 deletions
1,989
website/public/assets/illustrations/gql-codegen-cover.svg
This file was deleted.
Oops, something went wrong.
492 changes: 0 additions & 492 deletions
492
website/public/assets/illustrations/gql-generate-code-illustration.svg
This file was deleted.
Oops, something went wrong.
328 changes: 0 additions & 328 deletions
328
website/public/assets/illustrations/gql-watch-for-changes-illustration.svg
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import { cn, Heading, InfoCard } from '@theguild/components'; | ||
|
||
import boxSvg from './icons/box.svg'; | ||
import checkmarksSvg from './icons/checkmarks.svg'; | ||
import speedometerSvg from './icons/speedometer.svg'; | ||
|
||
export function DevExCards(props: { className?: string }) { | ||
return ( | ||
<section className={cn('px-4 py-6 sm:py-12 md:px-6 lg:py-24 xl:px-[120px]', props.className)}> | ||
<Heading as="h3" size="md" className="text-balance text-center"> | ||
Your chance to fully use GraphQL. | ||
</Heading> | ||
<p className="mx-auto mt-4 max-w-[700px] text-center text-green-800"> | ||
Codegen enhances your GraphQL development with fully typed client and server code, generating robust, | ||
error-resistant solutions in seconds | ||
</p> | ||
<ul className="mt-6 flex flex-row flex-wrap justify-center gap-2 md:mt-16 md:gap-6"> | ||
<InfoCard | ||
as="li" | ||
heading="Typed Queries, Mutations, and Subscriptions" | ||
icon={<img src={boxSvg.src} alt="" />} | ||
className="flex-1 rounded-2xl md:rounded-3xl" | ||
> | ||
Automate the creation of typed queries, mutations, and subscriptions for frameworks like React, Vue, Angular, | ||
and more. | ||
</InfoCard> | ||
<InfoCard | ||
as="li" | ||
heading="Typed GraphQL resolvers" | ||
icon={<img src={speedometerSvg.src} alt="" />} | ||
className="flex-1 basis-full rounded-2xl md:basis-0 md:rounded-3xl" | ||
> | ||
Generate typed GraphQL resolvers for any Node.js or Java GraphQL server, ensuring compatibility and | ||
efficiency. | ||
</InfoCard> | ||
<InfoCard | ||
as="li" | ||
heading="Fully-typed Node.js SDKs" | ||
icon={<img src={checkmarksSvg.src} alt="" />} | ||
className="flex-1 basis-full rounded-2xl md:rounded-3xl lg:basis-0" | ||
> | ||
Produce fully-typed Node.js SDKs, enhancing development with reliable, strongly typed software components. | ||
</InfoCard> | ||
</ul> | ||
</section> | ||
); | ||
} |
Oops, something went wrong.