repo
stringlengths
7
64
file_url
stringlengths
81
338
file_path
stringlengths
5
257
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:25:31
2026-01-05 01:50:38
truncated
bool
2 classes
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/shared-cta-tocode/index.tsx
www/sections/landingpage/shared-cta-tocode/index.tsx
import { analyze, parseFileAndNodeId, FigmaUrlType, FigmaFileOrNodeIdType, FigmaTargetNodeConfig, } from "@design-sdk/figma-url/dist"; import { event_cta__to_code } from "analytics"; import { useTranslation } from "next-i18next"; import React, { useCallback, useEffect, useState } from "react"; import { Flex }...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/shared-cta-tocode/modal-content-figma-auth-prompt.tsx
www/sections/landingpage/shared-cta-tocode/modal-content-figma-auth-prompt.tsx
import styled from "@emotion/styled"; import React from "react"; export function FigmaAuthModalContents({ onClick }: { onClick: () => void }) { return ( <RootWrapperContents> <Spacer /> <Title>Grida will now read your file</Title> <Body> Let’s convert your design to code. before we star...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/layout-detect/index.tsx
www/sections/landingpage/layout-detect/index.tsx
import styled from "@emotion/styled"; import SectionLayout from "layouts/section"; import React, { useState } from "react"; import ActionItem from "components/action-item"; import BlankArea from "components/blank-area"; import MotionButton from "components/landingpage/motion/button"; import ButtonDetectDemo from "comp...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/cta-see-the-magic/index.tsx
www/sections/landingpage/cta-see-the-magic/index.tsx
import React from "react"; import SectionCtaLastSeeTheMagicScaffold from "./scaffold"; const Section__CTASeeTheMagic = () => <SectionCtaLastSeeTheMagicScaffold />; export default Section__CTASeeTheMagic;
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/cta-see-the-magic/scaffold.tsx
www/sections/landingpage/cta-see-the-magic/scaffold.tsx
import styled from "@emotion/styled"; import Image from "next/image"; import React from "react"; import LandingpageText from "components/landingpage/text"; import { breakpoints, BreakPoints } from "../_breakpoints"; import { CtaArea } from "../shared-cta-tocode"; import { useTranslation } from "next-i18next"; import ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/cta-see-the-magic/components/container.tsx
www/sections/landingpage/cta-see-the-magic/components/container.tsx
import styled from "@emotion/styled"; import { breakpoints } from "../../_breakpoints"; export const MagicCtaContainer = styled.div` display: flex; justify-content: center; flex-direction: row; align-items: start; flex: 1; gap: 24px; align-self: stretch; box-sizing: border-box; @media ${breakpoints...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/cta-see-the-magic/components/button.tsx
www/sections/landingpage/cta-see-the-magic/components/button.tsx
import styled from "@emotion/styled"; import Image from "next/image"; import React from "react"; import { breakpoints } from "sections/landingpage/_breakpoints"; export function MagicButton({ onClick }: { onClick?: () => void }) { return ( <Button onClick={onClick}> <Texts> <Image width=...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/cta-see-the-magic/components/index.ts
www/sections/landingpage/cta-see-the-magic/components/index.ts
export * from "./input"; export * from "./button"; export * from "./container";
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/cta-see-the-magic/components/input.tsx
www/sections/landingpage/cta-see-the-magic/components/input.tsx
import styled from "@emotion/styled"; import React from "react"; import { breakpoints } from "sections/landingpage/_breakpoints"; export const MagicInput = React.forwardRef( ( { onChange, onSubmit, }: { onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void; onSubmit?: (e: React...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/slogan/index.tsx
www/sections/landingpage/slogan/index.tsx
import styled from "@emotion/styled"; import SectionLayout from "layouts/section"; import React from "react"; import { Button, Flex } from "theme-ui"; import Icon from "components/icon"; import LandingMainCtaButton from "components/landingpage/main-cta-button"; import LandingpageText from "components/landingpage/text"...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/section-opensource/index.tsx
www/sections/landingpage/section-opensource/index.tsx
import React from "react"; import { BreakPoints } from "../_breakpoints"; import LG from "./lg"; import MD from "./md"; import SM from "./sm"; import XL from "./xl"; import XS from "./xs"; const SectionOpensource = () => ( <div> <BreakPoints.xl> <XL /> </BreakPoints.xl> <BreakPoints.lg> <LG ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/section-opensource/xs.tsx
www/sections/landingpage/section-opensource/xs.tsx
import styled from "@emotion/styled"; import React from "react"; export default function SecrionOpensource320SizeXs() { return ( <RootWrapperSecrionOpensource320SizeXs> <Top> <HeadingContainer> <Frame626> <TextArea> <Heading> You onw it. ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/section-opensource/xl.tsx
www/sections/landingpage/section-opensource/xl.tsx
import styled from "@emotion/styled"; import React from "react"; export default function SecrionOpensource1440SizeXl() { return ( <RootWrapperSecrionOpensource1440SizeXl> <Top> <HeadingAndGraphicsContainer> <HeadingContainer> <TextArea> <Heading> ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/section-opensource/sm.tsx
www/sections/landingpage/section-opensource/sm.tsx
import styled from "@emotion/styled"; import React from "react"; export default function SecrionOpensource768SizeSm() { return ( <RootWrapperSecrionOpensource768SizeSm> <Top> <HeadingAndGraphicsContainer> <HeadingContainer> <TextArea> <Heading> Yo...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/section-opensource/lg.tsx
www/sections/landingpage/section-opensource/lg.tsx
import styled from "@emotion/styled"; import React from "react"; export default function SecrionOpensource1280SizeLg() { return ( <RootWrapperSecrionOpensource1280SizeLg> <Top> <HeadingAndGraphicsContainer> <HeadingContainer> <TextArea> <Heading> ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/section-opensource/md.tsx
www/sections/landingpage/section-opensource/md.tsx
import styled from "@emotion/styled"; import React from "react"; export default function SecrionOpensource1024SizeMd() { return ( <RootWrapperSecrionOpensource1024SizeMd> <Top> <HeadingAndGraphicsContainer> <HeadingContainer> <TextArea> <Heading> ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/design-once-run-anywhere/index.tsx
www/sections/landingpage/design-once-run-anywhere/index.tsx
/* eslint-disable import-helpers/order-imports */ import styled from "@emotion/styled"; import React from "react"; import { BackgroundGradient } from "./styles/background"; import DesignOnceRunAnywhereScaffold from "./scaffold"; const DesignOnceRunAnywhere = () => ( <Container> <DesignOnceRunAnywhereScaffold />...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/design-once-run-anywhere/scaffold.tsx
www/sections/landingpage/design-once-run-anywhere/scaffold.tsx
import styled from "@emotion/styled"; import React from "react"; import { ActivityBar, WindowHandle, StatusBar, Panel, } from "components/mock-vscode"; import { breakpoints } from "../_breakpoints"; import MusicHome from "../demo-app"; import { BackgroundGradient } from "./styles/background"; import { Heading...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/design-once-run-anywhere/styles/background.ts
www/sections/landingpage/design-once-run-anywhere/styles/background.ts
import { css } from "@emotion/react"; export const BackgroundGradient = css` background: linear-gradient( 65.15deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 87, 255, 0) 100% ), linear-gradient(0deg, #221d29, #221d29); `;
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/design-once-run-anywhere/styles/heading.ts
www/sections/landingpage/design-once-run-anywhere/styles/heading.ts
import { css } from "@emotion/react"; export const HeadingGradient = css` background: linear-gradient(269.61deg, #e6f2f0 0.33%, #f3fafa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: normal; `;
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/design-once-run-anywhere/k/snippets.ts
www/sections/landingpage/design-once-run-anywhere/k/snippets.ts
export const _DEMO_APP_SRC_TSX = ` import styled from "@emotion/styled"; import React from "react"; export default function MusicHome() { return ( <Wrapper> <Body> <TopSpacer /> <HeaderPart /> <PrimaryMusicCardsListPart /> <FriendsMusicSectionPart /> <TabBar /> ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
true
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/design-once-run-anywhere/k/index.ts
www/sections/landingpage/design-once-run-anywhere/k/index.ts
export * as snippets from "./snippets";
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/hero/index.tsx
www/sections/landingpage/hero/index.tsx
import styled from "@emotion/styled"; import Image from "next/image"; import React from "react"; import { breakpoints } from "../_breakpoints"; import MusicHome from "../demo-app"; import { CtaArea } from "../shared-cta-tocode"; import { useTranslation } from "next-i18next"; import { Background } from "./components/bac...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/hero/components/container.tsx
www/sections/landingpage/hero/components/container.tsx
import styled from "@emotion/styled"; import { motion } from "framer-motion"; import { media } from "utils/styled/media"; export const HeroCtaContainer = styled(motion.div)` padding-top: 24px; padding-bottom: 24px; align-self: stretch; justify-content: flex-start; display: flex; align-items: start; flex...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/hero/components/hero-primary-input.tsx
www/sections/landingpage/hero/components/hero-primary-input.tsx
import styled from "@emotion/styled"; import React from "react"; export const HeroPrimaryInput = React.forwardRef( ( { onChange, onSubmit, placeholder, }: { onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void; onSubmit?: (e: React.FormEvent<HTMLInputElement>) => void; ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/hero/components/hero-primary-button.tsx
www/sections/landingpage/hero/components/hero-primary-button.tsx
import styled from "@emotion/styled"; import React from "react"; export function HeroPrimaryButton({ onClick, children, }: React.PropsWithChildren<{ onClick?: () => void }>) { return ( <Base onClick={onClick}> <Label>{children}</Label> </Base> ); } const Base = styled.button` cursor: pointer; ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/hero/components/background.tsx
www/sections/landingpage/hero/components/background.tsx
import React, { useRef, useEffect } from "react"; import styled from "@emotion/styled"; import { motion } from "framer-motion"; export function Background() { return ( <HeroGradientBgArtwork> {/* <StaticGradient /> */} <DynamicGradientIframe /> </HeroGradientBgArtwork> ); } function DynamicGrad...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/hero/components/index.ts
www/sections/landingpage/hero/components/index.ts
export * from "./hero-primary-button"; export * from "./hero-primary-input"; export * from "./container";
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/k/contents.ts
www/sections/landingpage/k/contents.ts
export const contents = { heading2_let_there_be_buttons: { let_there: "Let there", be: "be", _buttons: "buttons", }, p_let_there_be_buttons_description: `Don’t worry. we understand your deisgn. We Support Components with built-in design system that is accessible, fully customizable. And all of this is...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/k/index.ts
www/sections/landingpage/k/index.ts
export * from "./contents";
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/products/storybook-component.tsx
www/sections/landingpage/products/storybook-component.tsx
import styled from "@emotion/styled"; import { motion } from "framer-motion"; import SectionLayout from "layouts/section"; import React, { useState } from "react"; import LandingpageText from "components/landingpage/text"; import { PRODUCT_LIST } from "utils/landingpage/constants"; import { List, RowFrame } from ".";...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/products/index.tsx
www/sections/landingpage/products/index.tsx
import styled from "@emotion/styled"; import { motion } from "framer-motion"; import SectionLayout from "layouts/section"; import React, { useState, useEffect, createRef } from "react"; import ReactPlayer from "react-player"; import { Flex, Heading, Text } from "theme-ui"; import BlankArea from "components/blank-area"...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/born-to-be-headless/index.tsx
www/sections/landingpage/born-to-be-headless/index.tsx
import React from "react"; import { BreakPoints } from "../_breakpoints"; import LG from "./lg"; import MD from "./md"; import { SectionBornToBeHeadlessScaffold } from "./scaffold"; import SM from "./sm"; import XL from "./xl"; import XS from "./xs"; const Section__BornToBeHeadLess = () => ( <div> <SectionBornT...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/born-to-be-headless/tabs.ts
www/sections/landingpage/born-to-be-headless/tabs.ts
import { NamedCodeIcons } from "components/mock-vscode/code-icon"; export const TabsList = [ { id: "vscode", title: "VSCode", icon: <NamedCodeIcons>"vscode", }, { id: "assistant", title: "Figma Assistant", icon: <NamedCodeIcons>"figma", }, // { // id: "zero-deps", // title: "Z...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/born-to-be-headless/xs.tsx
www/sections/landingpage/born-to-be-headless/xs.tsx
import styled from "@emotion/styled"; import React from "react"; export default function SectionBornToBeHeadless320SizeXs() { return ( <RootWrapperSectionBornToBeHeadless320SizeXs> <HeaderArea> <Heading> Born to be <br /> Headless </Heading> <Desc> ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/born-to-be-headless/xl.tsx
www/sections/landingpage/born-to-be-headless/xl.tsx
import styled from "@emotion/styled"; import React from "react"; import { Tabs } from "components/landingpage/tab-featured-menu"; import { k } from "sections"; import { TabsList } from "./tabs"; export default function SectionBornToBeHeadless1440SizeXl() { return ( <RootWrapperSectionBornToBeHeadless1440SizeXl...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/born-to-be-headless/scaffold.tsx
www/sections/landingpage/born-to-be-headless/scaffold.tsx
import styled from "@emotion/styled"; import React from "react"; import ActionItem from "components/action-item"; import { Tabs } from "components/landingpage/tab-featured-menu"; import { k } from "sections"; import { breakpoints } from "../_breakpoints"; import { DemoVSCode } from "./components"; import { TabsList }...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/born-to-be-headless/sm.tsx
www/sections/landingpage/born-to-be-headless/sm.tsx
import styled from "@emotion/styled"; import React from "react"; export default function SectionBornToBeHeadless768SizeSm() { return ( <RootWrapperSectionBornToBeHeadless768SizeSm> <HeaderArea> <Heading> Born to be <br /> Headless </Heading> <Desc> ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/born-to-be-headless/lg.tsx
www/sections/landingpage/born-to-be-headless/lg.tsx
import styled from "@emotion/styled"; import React from "react"; export default function SectionBornToBeHeadless1280SizeLg() { return ( <RootWrapperSectionBornToBeHeadless1280SizeLg> <HeaderArea> <Heading>Born to be Headless</Heading> <Desc> WIP - To truely help your productivity,...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/born-to-be-headless/md.tsx
www/sections/landingpage/born-to-be-headless/md.tsx
import styled from "@emotion/styled"; import React from "react"; export default function SectionBornToBeHeadless1024SizeMd() { return ( <RootWrapperSectionBornToBeHeadless1024SizeMd> <HeaderArea> <Heading>Born to be Headless</Heading> <Desc> WIP - To truely help your productivity,...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/born-to-be-headless/components/demo-vscode.tsx
www/sections/landingpage/born-to-be-headless/components/demo-vscode.tsx
import styled from "@emotion/styled"; import React from "react"; export function DemoVSCode() { return ( <RootWrapperDemo> <Tabs> <BaseVscodeTab> <LabelArea> <Icon src="https://s3-us-west-2.amazonaws.com/figma-alpha-api/img/cecd/8d50/1f5569ac66c9ba6f70c1fb403ff58...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/born-to-be-headless/components/demo-figma-assistant.tsx
www/sections/landingpage/born-to-be-headless/components/demo-figma-assistant.tsx
// dummy export const a = "";
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/born-to-be-headless/components/index.ts
www/sections/landingpage/born-to-be-headless/components/index.ts
export * from "./demo-vscode"; export * from "./demo-figma-assistant";
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/_breakpoints/index.tsx
www/sections/landingpage/_breakpoints/index.tsx
import React from "react"; import { useMediaQuery } from "react-responsive"; const _xl = ({ children }) => { const isDesktop = useMediaQuery({ minWidth: 1440 }); return isDesktop ? children : null; }; const _lg = ({ children }) => { const isTablet = useMediaQuery({ minWidth: 1280, maxWidth: 1439 }); return isT...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/everything-instant/storybook-style.ts
www/sections/landingpage/everything-instant/storybook-style.ts
import styled from "@emotion/styled"; import LandingpageText from "components/landingpage/text"; export const Description = styled(LandingpageText)` max-width: 520px; margin-top: 20px; z-index: 99; `; export const OnlineTitle = styled(LandingpageText)` display: flex; align-items: center; `;
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/everything-instant/index.tsx
www/sections/landingpage/everything-instant/index.tsx
import styled from "@emotion/styled"; import ApplicationPreview from "layouts/landingpage/application-preview"; import SectionLayout from "layouts/section"; import Image from "next/image"; import React, { useEffect, useState } from "react"; import { Flex } from "theme-ui"; import ActionItem from "components/action-ite...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/everything-instant/design-code/index.tsx
www/sections/landingpage/everything-instant/design-code/index.tsx
import styled from "@emotion/styled"; import CodePreview from "layouts/landingpage/code-preview"; import DesignPlatforms from "layouts/landingpage/design-platforms"; import SectionLayout from "layouts/section"; import React from "react"; import { Flex } from "theme-ui"; import BlankArea from "components/blank-area"; i...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/demo-app/index.tsx
www/sections/landingpage/demo-app/index.tsx
import styled from "@emotion/styled"; import React from "react"; export default function MusicHome({ scale = 1 }: { scale?: number }) { return ( <Wrapper scale={scale}> <Body> <TopSpacer /> <HeaderPart /> <PrimaryMusicCardsListPart /> <FriendsMusicSectionPart /> <Tab...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/assistant/join-with-code.tsx
www/sections/assistant/join-with-code.tsx
import Link from "next/link"; import React from "react"; import { FeaturedCard } from "./featured-card"; export function JoinWithCodeSection() { const [verified, setVerified] = React.useState(false); return ( <div id="start" style={{ display: "flex", padding: "40px", justif...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/assistant/featured-card.tsx
www/sections/assistant/featured-card.tsx
import styled from "@emotion/styled"; export const FeaturedCard = styled.div` flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background-image: url("/_/assistant/featured-cta-background.png"); background-repeat: no-repeat; background-...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/assistant/join-waitlist.tsx
www/sections/assistant/join-waitlist.tsx
import React, { useEffect } from "react"; import { FeaturedCard } from "./featured-card"; import Link from "next/link"; import { ArrowRightIcon } from "@radix-ui/react-icons"; import day from "dayjs"; import RelativeTime from "dayjs/plugin/relativeTime"; import styled from "@emotion/styled"; import { links } from "k/li...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/assistant/logos.tsx
www/sections/assistant/logos.tsx
import React from "react"; import Image from "next/image"; import styled from "@emotion/styled"; import { ArrowRightIcon } from "@radix-ui/react-icons"; import Link from "next/link"; const logos = [ { src: "/assets/logos/grey/google@2x.png", alt: "Google logo", width: 95, secondary: false, }, { ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/assistant/hero.tsx
www/sections/assistant/hero.tsx
import styled from "@emotion/styled"; import React from "react"; import Image from "next/image"; import { FigmaLogoIcon, GitHubLogoIcon } from "@radix-ui/react-icons"; import Link from "next/link"; import herobackground from "../../public/_/assistant/hero-background.png"; const figma_plugin_url = "https://www.figma....
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/assistant/pricing.tsx
www/sections/assistant/pricing.tsx
import styled from "@emotion/styled"; import LandingpageText from "components/landingpage/text"; import PricingCard from "components/pricing-card"; import { useRouter } from "next/router"; import React from "react"; import { Flex } from "theme-ui"; export function PricingSection() { const router = useRouter(); re...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/whats-new/header-label/index.tsx
www/sections/whats-new/header-label/index.tsx
import React from 'react' type WhatsNewHeaderLabelProps = { label: string | undefined | string[] installUrl: string } function capitalize(str: string) { return str !== undefined && str.charAt(0).toUpperCase() + str.slice(1); } const WhatsNewHeaderLabel = ({ label, installUrl }: WhatsNewHeaderLabelProps) ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/whats-new/release-note/index.tsx
www/sections/whats-new/release-note/index.tsx
import React, { useState } from 'react' import { GithubReleaseNote } from 'utils/methods/getGithubReleaseNote' import useAsyncEffect from 'utils/hooks/use-async-effect'; import markdownToHtml from 'utils/docs/md-to-html'; import styled from '@emotion/styled'; interface WhatsNewReleaseNoteProps { release: GithubRele...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/pricing/faqs.section.tsx
www/sections/pricing/faqs.section.tsx
import React from "react"; import { FaqQnaItem } from "components/faq/interface"; import FAQs from "components/faq"; const PRICING_FAQ_LIST: FaqQnaItem[] = [ { query: "How do Grida make money?", answer: "TBD", }, { query: "What are the limitations with free plan?", answer: "TBD", }, { que...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/pricing/index.ts
www/sections/pricing/index.ts
import PricingFAQs from "./faqs.section"; import FeatureList from "./feature-list"; import FreePlan from "./free-plan"; import PlanList from "./pricing-table"; export default { Hero_TryFreePlan: FreePlan, ComparePlans: PlanList, FeaturesAndPricingTable: FeatureList, FAQs: PricingFAQs, };
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/pricing/pricing-table/interface.ts
www/sections/pricing/pricing-table/interface.ts
/** * alias: "Authentication" * feature: "Phone Auth - US, Canada, and India (by requests)" * free: "100 / Mo" * team: "50,000 / Mo" * extra: "$1 / 2K" */ export interface FeaturePricingItem { alias: string; feature: string; // not used for now helpContext?: string; free: PricingDescription; team: Pri...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/pricing/pricing-table/index.tsx
www/sections/pricing/pricing-table/index.tsx
import React, { useCallback } from "react"; import styled from "@emotion/styled"; import { Flex, Heading, Text } from "theme-ui"; import Icon from "components/icon"; import SectionLayout from "layouts/section"; import BlankArea from "components/blank-area"; import { media } from "utils/styled/media"; import Landingpage...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/pricing/free-plan/index.tsx
www/sections/pricing/free-plan/index.tsx
import React from "react"; import styled from "@emotion/styled"; import { Heading, Text } from "theme-ui"; import SectionLayout from "layouts/section"; import StartNow from "components/start-now"; import BlankArea from "components/blank-area"; const FreePlan = () => { return ( <SectionLayout alignContent="center...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/pricing/feature-list/index.tsx
www/sections/pricing/feature-list/index.tsx
import styled from "@emotion/styled"; import SectionLayout from "layouts/section"; import React from "react"; import { Flex } from "theme-ui"; import BlankArea from "components/blank-area"; import { media } from "utils/styled/media"; import { DesktopView } from "utils/styled/styles"; import FeatureListDesktopView fro...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/pricing/feature-list/pricing-cell/index.tsx
www/sections/pricing/feature-list/pricing-cell/index.tsx
import styled from "@emotion/styled"; import React from "react"; import { Flex, FlexProps } from "theme-ui"; export default function ResponsivePricingCell( props: { price: string | boolean | null; } & FlexProps, ) { const { price, ...p } = props; let displayString; if (typeof price == "string") { dis...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/pricing/feature-list/desktop-view/index.tsx
www/sections/pricing/feature-list/desktop-view/index.tsx
import styled from "@emotion/styled"; import React, { useCallback } from "react"; import { Flex, Text, Heading } from "theme-ui"; import BlankArea from "components/blank-area"; import Icon from "components/icon"; import LandingpageText from "components/landingpage/text"; import { usePopupContext } from "utils/context/...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/pricing/feature-list/mobile-view/index.tsx
www/sections/pricing/feature-list/mobile-view/index.tsx
import React, { useState } from "react"; import styled from "@emotion/styled"; import { Flex, Text, Heading } from "theme-ui"; import FeatureChoice from "components/feature-choice"; // TODO interface FeatureProps { data: any; } const choice = ["Free", "Team", "Extra Usage"]; const FeatureListMobileView: React.FC<F...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/clientonly.tsx
www/components/clientonly.tsx
import React from "react"; const ClientOnly = ({ children, ...delegated }) => { const [hasMounted, setHasMounted] = React.useState(false); React.useEffect(() => { setHasMounted(true); }, []); if (!hasMounted) return null; return <React.Fragment {...delegated}>{children}</React.Fragment>; }; export de...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/globalization/feature-card-item/interface.ts
www/components/globalization/feature-card-item/interface.ts
export interface FeatureListupCardItemDisplayData { title: string; description: string; artwork: ImagePath | JSX.Element; } type ImagePath = string;
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/globalization/feature-card-item/index.tsx
www/components/globalization/feature-card-item/index.tsx
import styled from "@emotion/styled"; import LandingpageText from "components/landingpage/text"; import React from "react"; import { FeatureListupCardItemDisplayData } from "./interface"; export default function FeatureCardItem(props: { data: FeatureListupCardItemDisplayData; }) { return ( <Card> <Landin...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/blank-area/index.tsx
www/components/blank-area/index.tsx
import styled from "@emotion/styled"; import React from "react"; import { media } from "utils/styled/media"; interface BlankAreaProps { height: number[]; } export default function BlankArea(props: BlankAreaProps) { const { height } = props; return <Div height={height} />; } const Div = styled.div<BlankAreaPro...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/icon/index.tsx
www/components/icon/index.tsx
import styled from "@emotion/styled"; import React from "react"; import { Box, BoxProps } from "theme-ui"; import { width, height } from "styled-system"; import icons, { IconList } from "./icons"; export type IconKey = keyof IconList; interface IconProps extends BoxProps { name: IconKey; width?: number | number[...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/icon/icons.tsx
www/components/icon/icons.tsx
interface IconListProps { width: number; height: number; svg: JSX.Element; } export interface IconList { search: IconListProps; grida_black: IconListProps; grida_white: IconListProps; youtube: IconListProps; instagram: IconListProps; twitter: IconListProps; facebook: IconListProps; dribble: IconL...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/sitemap-list/index.tsx
www/components/sitemap-list/index.tsx
import React from "react"; import { event_click_footer_menu } from "analytics"; import Link from "next/link"; import { LinkWithDocsFallback } from "components/fixme"; import { Flex, Text } from "theme-ui"; import { Sitemap } from "components/footer/sitemap"; import { useTheme } from "@emotion/react"; import { useTransl...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/docs-navigation-mobile/index.tsx
www/components/docs-navigation-mobile/index.tsx
import styled from "@emotion/styled"; import React from "react"; import { DocsRoute } from "utils/docs/model"; function DocsNavigationMobile(props: { route: DocsRoute }) { return <Wrapper>Menu</Wrapper>; } export default DocsNavigationMobile; const Wrapper = styled.div` width: 100%; height: 100px; `;
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/fixme/link-with-docs-fallback.tsx
www/components/fixme/link-with-docs-fallback.tsx
import React from "react"; import Link from "next/link"; export function LinkWithDocsFallback({ href, children, ...props }: React.ComponentProps<typeof Link>) { const do_fallback_docs = String(href).startsWith("/docs"); return ( <Link href={href} locale={do_fallback_docs ? "en" : undefined} {...props}> ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/fixme/index.ts
www/components/fixme/index.ts
export * from "./link-with-docs-fallback";
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/pricing-card/index.tsx
www/components/pricing-card/index.tsx
import React from "react"; import styled from "@emotion/styled"; import { CheckIcon, QuestionMarkCircledIcon } from "@radix-ui/react-icons"; import LandingpageText from "components/landingpage/text"; import { Button, Flex, Text } from "theme-ui"; import { media } from "utils/styled/media"; function PricingCard({ nor...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/popup/index.tsx
www/components/popup/index.tsx
import styled from "@emotion/styled"; import React, { useCallback, useEffect, useRef, Children, useState, } from "react"; import { Flex, Text } from "theme-ui"; import { borderColor, height } from "styled-system"; import Icon from "components/icon"; import { usePopupContext, PopupInfo } from "utils/context/P...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/code/index.tsx
www/components/code/index.tsx
import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; import { vscDarkPlus as colorscheme } from "react-syntax-highlighter/dist/cjs/styles/prism"; export default function CodeBlock({ children, className }) { const language = className?.replace(/language-/, ""); return ( <SyntaxHighlighter ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/mdx/layout.tsx
www/components/mdx/layout.tsx
import SectionLayout from "layouts/section"; export { SectionLayout };
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/mdx/button.tsx
www/components/mdx/button.tsx
import { Button } from "theme-ui"; export default Button;
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/mdx/index.tsx
www/components/mdx/index.tsx
import Button from "./button"; import { SectionLayout } from "./layout"; import { Title } from "./title"; export const _MDX_COMPONENTS = { Button, SectionLayout, Title, }; // add Title const Mdx = { Button, SectionLayout, Title, }; export default Mdx;
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/mdx/title.tsx
www/components/mdx/title.tsx
import styled from "@emotion/styled"; import { media } from "utils/styled/media"; export function Title({ children }) { return <StyledH1>{children}</StyledH1>; } const StyledH1 = styled.h1` margin-top: 0; ${props => media(props.theme.breakpoints[2], null)} { font-size: 64px; line-height: 88.19%; le...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/start-now/index.tsx
www/components/start-now/index.tsx
import React from "react"; import styled from "@emotion/styled"; import { Flex, Text, Heading, Button } from "theme-ui"; import Icon from "components/icon"; import { media } from "utils/styled/media"; import { LandingpageUrls } from "utils/landingpage/constants"; const descList = [ { title: "Code export includin...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/main-cta-button.tsx
www/components/landingpage/main-cta-button.tsx
import styled from "@emotion/styled"; import { motion } from "framer-motion"; import { useTranslation } from "next-i18next"; import { useRouter } from "next/router"; import React from "react"; import { Button, Box } from "theme-ui"; import { useAuthState } from "utils/hooks/use-auth-state"; import { URLS } from "utils...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/effect/index.ts
www/components/landingpage/effect/index.ts
import ElevatedVideoPlayer from "./elevated-video-player"; export { ElevatedVideoPlayer };
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/effect/elevated-video-player/index.tsx
www/components/landingpage/effect/elevated-video-player/index.tsx
import styled from "@emotion/styled"; import Icon from "components/icon"; import React, { useCallback, useState } from "react"; import { motion, useTransform, useViewportScroll } from "framer-motion"; import { usePopupContext } from "utils/context/PopupContext"; import { Flex } from "theme-ui"; import ReactPlayer from ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/effect/onair-button/index.tsx
www/components/landingpage/effect/onair-button/index.tsx
import styled from "@emotion/styled"; import React from "react"; import { media } from "utils/styled/media"; const OnairButton = () => { return <Button style={{ letterSpacing: "0em" }}>ON AIR</Button>; }; const Button = styled.button` margin-right: auto; margin-top: 20px; // region gradient animation backg...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/motion/base.tsx
www/components/landingpage/motion/base.tsx
import React from "react"; import styled from "@emotion/styled"; // tripple click or above const TRIGGER_NEXT_MUTIPLE_CLICKS = 3; export interface MotionItemProps { onTriggerNext: () => void; } interface MotionItemContainerProps extends MotionItemProps { children: JSX.Element; } export function MotionItemContai...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/motion/button-detect-demo/index.tsx
www/components/landingpage/motion/button-detect-demo/index.tsx
// import Lottie from "react-lottie"; import animationData from "public/animations/detection-demos/button/comp.json"; export default function ButtonDetectDemo() { const defaultMotionOptions = { loop: true, autoplay: true, isClickToPauseDisabled: true, animationData: animationData, rendererSetting...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/motion/radio/index.tsx
www/components/landingpage/motion/radio/index.tsx
import React from "react"; import { MotionItemContainer, MotionItemProps } from "../base"; function MotionRadio(props: MotionItemProps) { return ( <MotionItemContainer onTriggerNext={props.onTriggerNext}> <div>TODO: RADIO HERE</div> </MotionItemContainer> ); } export default MotionRadio;
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/motion/button/index.tsx
www/components/landingpage/motion/button/index.tsx
import React from "react"; import styled from "@emotion/styled"; import { motion } from "framer-motion"; import { MotionItemContainer, MotionItemProps } from "../base"; import { media } from "utils/styled/media"; function MotionButton(props: MotionItemProps) { return ( <MotionItemContainer onTriggerNext={p...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/motion/live-design-demo/index.tsx
www/components/landingpage/motion/live-design-demo/index.tsx
import styled from "@emotion/styled"; import React, { useEffect, useRef, useState } from "react"; import { Flex } from "theme-ui"; import animationData from "public/animations/live-demo-app-design-motion/comp.json"; import useOnScreen from "utils/hooks/use-on-screen"; import { media } from "utils/styled/media"; expor...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/text/index.tsx
www/components/landingpage/text/index.tsx
import React from "react"; import { Heading, Text } from "theme-ui"; const h1FontSizes = ["32px", "64px", "64px", "80px"]; const h2FontSizes = ["32px", "64px", "64px", "64px"]; const h4FontSizes = ["32px", "36px", "36px", "36px"]; const body1FontSizes = ["21px", "21px", "21px", "24px"]; export default function Landingp...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/tab-featured-menu/tabs.tsx
www/components/landingpage/tab-featured-menu/tabs.tsx
import styled from "@emotion/styled"; import React, { useState } from "react"; import { NamedCodeIcons } from "components/mock-vscode/code-icon"; import { breakpoints } from "sections/landingpage/_breakpoints"; import { FeaturedMenuTab } from "./tab"; export function Tabs({ theme = "light", gap = 27, tabs = []...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/tab-featured-menu/tab.tsx
www/components/landingpage/tab-featured-menu/tab.tsx
import styled from "@emotion/styled"; import React from "react"; import { CodeIcon, NamedCodeIcons } from "components/mock-vscode/code-icon"; export function FeaturedMenuTab({ title = "Title", theme = "light", selected = false, icon, iconsize, onClick, }: { theme?: "light" | "dark"; title?: string; ...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/landingpage/tab-featured-menu/index.ts
www/components/landingpage/tab-featured-menu/index.ts
export * from "./tab"; export * from "./tabs";
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/banner/header-banner.tsx
www/components/banner/header-banner.tsx
import React from "react"; export function HeaderBanner({ children }: React.PropsWithChildren<{}>) { return <div>{children}</div>; }
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/banner/index.ts
www/components/banner/index.ts
export * from "./header-banner";
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/feature-choice/index.tsx
www/components/feature-choice/index.tsx
import React, { useCallback, useState } from "react"; import { Flex, Text } from "theme-ui"; import styled from "@emotion/styled"; import Icon from "components/icon"; import LandingpageText from "components/landingpage/text"; import BlankArea from "components/blank-area"; import { usePopupContext } from "utils/context/...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false
gridaco/legacy
https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/components/mock-vscode/activity-bar.tsx
www/components/mock-vscode/activity-bar.tsx
import styled from "@emotion/styled"; import React from "react"; import { CodeIcon } from "./code-icon"; function ActivityBar() { return ( <RootWrapperActivityBar> <Bottom> <Item> <Base> <Icon></Icon> </Base> </Item> <Item_0001> <Base_0001...
typescript
Apache-2.0
8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582
2026-01-05T05:01:14.213250Z
false