From 113e8433e4b511e6f32091349b7ddccdc3718181 Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Sun, 28 Apr 2024 22:43:10 +0100 Subject: Source commit --- src/pages/index.tsx | 187 ++-------------------------------------------------- 1 file changed, 6 insertions(+), 181 deletions(-) (limited to 'src/pages/index.tsx') diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 2da81b8..db1eba2 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,193 +1,18 @@ import * as React from "react" import type { HeadFC, PageProps } from "gatsby" -const pageStyles = { - color: "#232129", - padding: 96, - fontFamily: "-apple-system, Roboto, sans-serif, serif", -} -const headingStyles = { - marginTop: 0, - marginBottom: 64, - maxWidth: 320, -} -const headingAccentStyles = { - color: "#663399", -} -const paragraphStyles = { - marginBottom: 48, -} -const codeStyles = { - color: "#8A6534", - padding: 4, - backgroundColor: "#FFF4DB", - fontSize: "1.25rem", - borderRadius: 4, -} -const listStyles = { - marginBottom: 96, - paddingLeft: 0, -} -const doclistStyles = { - paddingLeft: 0, -} -const listItemStyles = { - fontWeight: 300, - fontSize: 24, - maxWidth: 560, - marginBottom: 30, -} - -const linkStyle = { - color: "#8954A8", - fontWeight: "bold", - fontSize: 16, - verticalAlign: "5%", -} - -const docLinkStyle = { - ...linkStyle, - listStyleType: "none", - display: `inline-block`, - marginBottom: 24, - marginRight: 12, -} - -const descriptionStyle = { - color: "#232129", - fontSize: 14, - marginTop: 10, - marginBottom: 0, - lineHeight: 1.25, -} - -const docLinks = [ - { - text: "TypeScript Documentation", - url: "https://www.gatsbyjs.com/docs/how-to/custom-configuration/typescript/", - color: "#8954A8", - }, - { - text: "GraphQL Typegen Documentation", - url: "https://www.gatsbyjs.com/docs/how-to/local-development/graphql-typegen/", - color: "#8954A8", - } -] - -const badgeStyle = { - color: "#fff", - backgroundColor: "#088413", - border: "1px solid #088413", - fontSize: 11, - fontWeight: "bold", - letterSpacing: 1, - borderRadius: 4, - padding: "4px 6px", - display: "inline-block", - position: "relative" as "relative", - top: -2, - marginLeft: 10, - lineHeight: 1, -} +import PageLayout, { generateHeader } from "../layout/page"; -const links = [ - { - text: "Tutorial", - url: "https://www.gatsbyjs.com/docs/tutorial/getting-started/", - description: - "A great place to get started if you're new to web development. Designed to guide you through setting up your first Gatsby site.", - color: "#E95800", - }, - { - text: "How to Guides", - url: "https://www.gatsbyjs.com/docs/how-to/", - description: - "Practical step-by-step guides to help you achieve a specific goal. Most useful when you're trying to get something done.", - color: "#1099A8", - }, - { - text: "Reference Guides", - url: "https://www.gatsbyjs.com/docs/reference/", - description: - "Nitty-gritty technical descriptions of how Gatsby works. Most useful when you need detailed information about Gatsby's APIs.", - color: "#BC027F", - }, - { - text: "Conceptual Guides", - url: "https://www.gatsbyjs.com/docs/conceptual/", - description: - "Big-picture explanations of higher-level Gatsby concepts. Most useful for building understanding of a particular topic.", - color: "#0D96F2", - }, - { - text: "Plugin Library", - url: "https://www.gatsbyjs.com/plugins", - description: - "Add functionality and customize your Gatsby site or app with thousands of plugins built by our amazing developer community.", - color: "#8EB814", - }, - { - text: "Build and Host", - url: "https://www.gatsbyjs.com/cloud", - badge: true, - description: - "Now you’re ready to show the world! Give your Gatsby site superpowers: Build and host on Gatsby Cloud. Get started for free!", - color: "#663399", - }, -] const IndexPage: React.FC = () => { return ( -
-

- Congratulations -
- β€” you just made a Gatsby site! πŸŽ‰πŸŽ‰πŸŽ‰ -

-

- Edit src/pages/index.tsx to see this page - update in real-time. 😎 -

- -
    - {links.map(link => ( -
  • - - - {link.text} - - {link.badge && ( - - NEW! - - )} -

    {link.description}

    -
    -
  • - ))} -
- Gatsby G Logo -
+ +
+
+
) } export default IndexPage -export const Head: HeadFC = () => Home Page +export const Head: HeadFC = generateHeader("PyDis Ops", "Internal services for Python Discord."); -- cgit v1.2.3