-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
60 additions
and
48 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
import React from "react"; | ||
import DefaultLayout from "../layouts/DefaultLayout"; | ||
import PYCHero from "@site/src/components/PYCHero"; | ||
import PYCButton from "@site/src/components/PYCButton"; | ||
|
||
export default function Home(): JSX.Element { | ||
return ( | ||
<DefaultLayout | ||
title="Pycord Guide" | ||
description="The Official Guide for Pycord" | ||
> | ||
<PYCHero | ||
title="Pycord Guide" | ||
subtitle="Learn how to create Discord bots with Pycord" | ||
hasLogo={true} | ||
/> | ||
<main className="content-wrap--home-page"> | ||
Imagine a place where you can learn how to create an awesome Discord | ||
bot, equip it with Pycord, and have it running in less than a minute. | ||
Imagine a place where you can learn everything about Pycord. Imagine a | ||
guide. A Pycord Guide! | ||
<br /> <br /> | ||
Whether you are a newbie or an experienced developer, you will find | ||
everything you need to know about Pycord here. This guide will teach | ||
you: | ||
<ul> | ||
<li>How to get a brand new bot running from scratch;</li> | ||
<li>How to create Interactions, Context Menus and Commands;</li> | ||
<li>In-depth concepts such as Embeds, Reactions, Help Commands, Paginators, etc;</li> | ||
<li>Popular Topics such as working with Databases, Sharding, etc;</li> | ||
<li>Ways to handle and manage common errors and best practices for bots;</li> | ||
<li>And Much More!</li> | ||
</ul> | ||
</main> | ||
</DefaultLayout> | ||
); | ||
} | ||
import React from "react"; | ||
import DefaultLayout from "@site/src/layouts/DefaultLayout"; | ||
import PYCHero from "@site/src/components/PYCHero"; | ||
import PYCButton from "@site/src/components/PYCButton"; | ||
|
||
export default function Home(): JSX.Element { | ||
return ( | ||
<DefaultLayout | ||
title="Pycord Guide" | ||
description="The Official Guide for Pycord" | ||
> | ||
<PYCHero | ||
title="Pycord Guide" | ||
subtitle="Learn how to create Discord bots with Pycord" | ||
hasLogo={true} | ||
/> | ||
<main className="content-wrap--home-page"> | ||
Imagine a place where you can learn how to create an awesome Discord | ||
bot, equip it with Pycord, and have it running in less than a minute. | ||
Imagine a place where you can learn everything about Pycord. Imagine a | ||
guide. A Pycord Guide! | ||
<br /> <br /> | ||
Whether you are a newbie or an experienced developer, you will find | ||
everything you need to know about Pycord here. This guide will teach | ||
you: | ||
<ul> | ||
<li>How to get a brand new bot running from scratch;</li> | ||
<li>How to create Interactions, Context Menus and Commands;</li> | ||
<li>In-depth concepts such as Embeds, Reactions, Help Commands, Paginators, etc;</li> | ||
<li>Popular Topics such as working with Databases, Sharding, etc;</li> | ||
<li>Ways to handle and manage common errors and best practices for bots;</li> | ||
<li>And Much More!</li> | ||
</ul> | ||
</main> | ||
</DefaultLayout> | ||
); | ||
} |
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 |
---|---|---|
|
@@ -2678,6 +2678,13 @@ | |
"@types/history" "^4.7.11" | ||
"@types/react" "*" | ||
|
||
"@types/[email protected]": | ||
version "0.4.3" | ||
resolved "https://registry.yarnpkg.com/@types/react-twemoji/-/react-twemoji-0.4.3.tgz#83542b47ffcee8c872b669a05e74a5ef7876e497" | ||
integrity sha512-VzWkjmO8yJ31JSWgQhe0LCLU3FxcurTOklECm9p8v1xI/WfUBOGbSrqPjQPL46LE4oOqfrYIQ+0LM/8I6A8EDQ== | ||
dependencies: | ||
"@types/react" "*" | ||
|
||
"@types/react@*", "@types/[email protected]": | ||
version "17.0.2" | ||
resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.2.tgz#3de24c4efef902dd9795a49c75f760cbe4f7a5a8" | ||
|