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/packages/core-state/application/application-selector.ts | packages/core-state/application/application-selector.ts | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false | |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/application/application-state.ts | packages/core-state/application/application-state.ts | import { PageReference } from "@core/model";
export interface ApplicationState {
selectedPage: string;
selectedObjects: string[];
pages: PageReference[];
}
export interface ApplicationSnapshot {
selectedPage: string;
selectedObjects: string[];
pages: PageReference[];
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/application/application-reducer.ts | packages/core-state/application/application-reducer.ts | import { Action } from "../action";
import { ApplicationState } from "../application";
import { pageReducer } from "../page";
export function applicationReducer(
state: ApplicationState,
action: Action
): ApplicationState {
switch (action.type) {
case "select-page":
case "add-page":
case "rename-curr... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/application/create-initial-application-state.ts | packages/core-state/application/create-initial-application-state.ts | import { ApplicationState, ApplicationSnapshot } from "./application-state";
import { getSelectedPage, getSelectedObjects } from "@core/store/application";
import { PageReference } from "@core/model";
import { PageStore } from "@core/store";
import { PageRootKey } from "../page";
const DEFAULT_EMPTYSTATE_STARTING_PAGE... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/application/index.ts | packages/core-state/application/index.ts | export * from "./application-state";
export * from "./application-reducer";
//
export * from "./create-initial-application-state";
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/history/create-initial-history-state.ts | packages/core-state/history/create-initial-history-state.ts | import {
ApplicationSnapshot,
createInitialApplicationState,
} from "../application";
import { HistoryState } from "./history-state";
export function createInitialHistoryState(
app: ApplicationSnapshot
): HistoryState {
const applicationState = createInitialApplicationState(app);
return {
past: [],
p... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/history/history-state.ts | packages/core-state/history/history-state.ts | import { Action } from "../action";
import { ApplicationState } from "../application";
export type HistoryEntry = {
actionType: Action["type"];
timestamp: number;
state: ApplicationState;
};
export type HistoryState = {
past: HistoryEntry[];
present: ApplicationState;
future: HistoryEntry[];
};
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/history/history-reducer.ts | packages/core-state/history/history-reducer.ts | import produce from "immer";
import { ActionType, HistoryAction } from "../action";
import { ApplicationState, applicationReducer } from "../application";
import { HistoryState, HistoryEntry } from "./history-state";
export function historyReducer(state: HistoryState, action: HistoryAction) {
const currentState = st... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/history/index.ts | packages/core-state/history/index.ts | export * from "./history-state";
export * from "./history-reducer";
export * from "./create-initial-history-state";
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/page/page-reducer.ts | packages/core-state/page/page-reducer.ts | import produce from "immer";
import { getCurrentPage, getCurrentPageIndex } from "./page-selector";
import { ApplicationState } from "../application";
import {
AddPageAction,
add_on_current,
add_on_root,
DuplicateCurrentPageAction,
IAddPageAction,
MovePageAction,
PageAction,
PageRoot,
PageRootKey,
R... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/page/page-selector.ts | packages/core-state/page/page-selector.ts | import { Draft } from "immer";
import { ApplicationState } from "../application";
export type PageMetadata = {
focus: string;
};
export const getCurrentPageIndex = (state: Draft<ApplicationState>) => {
const pageIndex = state.pages.findIndex(
(page) => page.id === state.selectedPage
);
if (pageIndex === ... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/page/index.ts | packages/core-state/page/index.ts | export * from "./page-action";
export * from "./page-reducer";
export * from "./page-selector";
// page model
export * from "@core/model/page";
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-state/page/page-action.ts | packages/core-state/page/page-action.ts | import { DocumentInitial } from "@boring.so/loader";
import type { PageId } from "@core/model";
export type PageAction =
| MovePageAction //[type: "movePage", sourceIndex: number, destinationIndex: number]
| SelectPageAction // [type: "selectPage", pageId: string]
| AddPageAction //[type: "addPage", name: string... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/index.ts | packages/core-store/index.ts | export * from "./page";
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/boring/index.ts | packages/core-store/boring/index.ts | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false | |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/block/index.ts | packages/core-store/block/index.ts | import { openDB, deleteDB, wrap, unwrap } from "idb";
const dbname = "block-cache";
const dbver = 1;
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/application/selected-page-store.ts | packages/core-store/application/selected-page-store.ts | import { keys } from "./_keys";
const _key = keys["selected-page"];
export function getSelectedPage(): string | undefined {
return window.localStorage.getItem(_key);
}
export function setSelectedPage(page: string) {
window.localStorage.setItem(_key, page);
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/application/_keys.ts | packages/core-store/application/_keys.ts | export const keys = {
"selected-objects": "application-state/selected-objects",
"selected-page": "application-state/selected-page",
};
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/application/index.ts | packages/core-store/application/index.ts | export * from "./selected-objects-store";
export * from "./selected-page-store";
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/application/selected-objects-store.ts | packages/core-store/application/selected-objects-store.ts | import { keys } from "./_keys";
const _key = keys["selected-objects"];
export function getSelectedObjects(): string[] | undefined {
return JSON.parse(window.localStorage.getItem(_key) ?? "[]") as string[];
}
export function setSelectedObjects(objects: string[]) {
const d = JSON.stringify(objects);
window.localSt... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/page/page-store.ts | packages/core-store/page/page-store.ts | import { Page, PageDocumentType } from "@core/model";
import { BoringDocumentsStore } from "@boring.so/store";
import { BaseSimpleModelIdbStore } from "../_store/base-store";
import { BoringDocument } from "@boring.so/document-model";
/*no-export*/ interface PageStoreModel {
id: string;
type: PageDocumentType;
n... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/page/page-expanded-session-store.ts | packages/core-store/page/page-expanded-session-store.ts | ///
/// expanded / collapsed data of the page is only persistent in the session store.
/// when browser is closed, or reopened, the expanded state is lost.
///
import { PageId } from "@core/model";
/**
* expanded / collapsed data of the page is only persistent in the session store.
* when browser is closed, or reop... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/page/index.ts | packages/core-store/page/index.ts | export * from "./page-store";
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/_store/base-store.ts | packages/core-store/_store/base-store.ts | import { IDBPDatabase, openDB } from "idb";
type ID = string;
/**
* Simple model storage on indexed db
*/
export abstract class BaseSimpleModelIdbStore<Model, StoreModel> {
readonly store: string;
readonly dbname: string;
/**
* Must be `1 <= n`
**/
readonly dbver: number;
private _db: IDBPDatabase;... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/core-store/_store/index.ts | packages/core-store/_store/index.ts | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false | |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/app-cms-forms/index.ts | packages/app-cms-forms/index.ts | export * from "./components";
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/app-cms-forms/nav/tabs.tsx | packages/app-cms-forms/nav/tabs.tsx | import React from "react";
import styled from "@emotion/styled";
import { TableTabItem } from "@app/blocks/table-tab-item";
import { useRouter } from "next/router";
const tabs: { id: TabType; label: string }[] = [
{
id: "index",
label: "Design",
},
{
id: "connect",
label: "Connect",
},
{
... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/app-cms-forms/nav/index.ts | packages/app-cms-forms/nav/index.ts | export * from "./tabs";
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/app-cms-forms/components/form-grid-item.tsx | packages/app-cms-forms/components/form-grid-item.tsx | import React from "react";
import styled from "@emotion/styled";
export function FormGridItemCard({
name,
responses = 0,
onClick,
}: {
name: string;
responses?: number | string;
onClick?: () => void;
}) {
const [hover, setHover] = React.useState(false);
return (
<Container
onClick={onClick}
... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/packages/app-cms-forms/components/index.ts | packages/app-cms-forms/components/index.ts | export * from "./form-grid-item";
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/next-env.d.ts | web/next-env.d.ts | /// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/services/user-profile.ts | web/services/user-profile.ts | import Axios from "axios";
const secure_axios = Axios.create({
baseURL: "https://accounts.services.grida.co",
withCredentials: true,
});
export async function getUserProfile() {
try {
const resp = await secure_axios.get(`profile`);
return resp.data;
} catch (error) {
console.log("Error Profile ", ... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/services/scenes-store.ts | web/services/scenes-store.ts | import { SceneStoreService } from "@base-sdk/scene-store";
export function makeService() {
if (process.env.NODE_ENV == "development") {
// ONLY USED FOR DEVELOPMENT
return new SceneStoreService({
type: "token",
token: localStorage.getItem("jwt"),
});
} else {
return new SceneStoreServic... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/__test__/mockfile.ts | web/__test__/mockfile.ts | export const profile_mockup = {
id: "e68ab301-5063-4f98-a1f2-ed999ef3eba1",
profileImage:
"https://s3-us-west-1.amazonaws.com/accounts.bridged.xyz/default-images/user-profile-image/default-profile-image.png",
username: "Jim Carrey",
primaryRole: "DEVELOPER",
roles: ["DEVELOPER"],
bio: null,
createdAt:... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/util/auth.ts | web/util/auth.ts | const SIGNIN_URI = "https://accounts.grida.co/signin";
export function redirectionSignin(state) {
const currentUri = window.location.href;
const replaceUri = `${SIGNIN_URI}?redirect_uri=${currentUri}` as string;
switch (state) {
case "loading":
case "signedin":
return;
case "expired":
case... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/pages/_app.tsx | web/pages/_app.tsx | import React from "react";
import { Suspense, StrictMode } from "react";
import Head from "next/head";
import { Global, css } from "@emotion/react";
import { GlobalHelpButton } from "@app/fp-customer-support";
import Script from "next/script";
// enable SPA mode, supports react.Suspense; if you don't want to use Suspe... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/pages/index.tsx | web/pages/index.tsx | import React from "react";
import { AppRoot } from "@grida.co/app/app";
export default function HomePage() {
return <AppRoot mode="browser" controlDoubleClick={() => {}} />;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/pages/scenes/index.tsx | web/pages/scenes/index.tsx | import React, { useEffect, useState } from "react";
import { useRouter } from "next/router";
import styled from "@emotion/styled";
import { SceneItem } from "@app/scene-view/components/scene-item";
import SearchFormBox from "@app/scene-view/components/search/search-form-box";
import { SceneStoreService } from "@base-sd... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/pages/scenes/[sid]/index.tsx | web/pages/scenes/[sid]/index.tsx | import React, { useEffect, useState } from "react";
import styled from "@emotion/styled";
import { useRouter } from "next/router";
import { buildFlutterFrameUrl } from "@base-sdk/base/frame-embed";
import Editor, { useMonaco } from "@monaco-editor/react";
import CircularProgress from "@material-ui/core/CircularProgress... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/pages/preview/index.tsx | web/pages/preview/index.tsx | import React, { useEffect, useState } from "react";
import styled from "@emotion/styled";
import Axios from "axios";
import { useRouter } from "next/router";
import Editor, { useMonaco } from "@monaco-editor/react";
import CircularProgress from "@material-ui/core/CircularProgress";
// import FrameFlutter from "../..... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/pages/forms/index.tsx | web/pages/forms/index.tsx | import React from "react";
import styled from "@emotion/styled";
import { TableTabItem } from "@app/blocks/table-tab-item";
import { FormGridItemCard } from "@app/cms-forms/components";
import { InBlockButton } from "@app/blocks";
import { useRouter } from "next/router";
const tabs = [
{
id: "published",
lab... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/pages/forms/[id]/share.tsx | web/pages/forms/[id]/share.tsx | import React from "react";
export default function FormSharePage() {
return <></>;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/pages/forms/[id]/developer.tsx | web/pages/forms/[id]/developer.tsx | import React from "react";
export default function FormForDevelopersPage() {
return <></>;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/pages/forms/[id]/index.tsx | web/pages/forms/[id]/index.tsx | import React from "react";
import styled from "@emotion/styled";
import { FormsDetailNavigationTabs } from "@app/cms-forms/nav";
export default function FormDesignPage() {
return (
<>
<FormsDetailNavigationTabs initial="index" />
</>
);
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/pages/forms/[id]/results.tsx | web/pages/forms/[id]/results.tsx | import React, { useEffect, useMemo } from "react";
import styled from "@emotion/styled";
import {
createTable,
getCoreRowModel,
getPaginationRowModel,
useTableInstance,
} from "@tanstack/react-table";
import Axios from "axios";
import { useRouter } from "next/router";
import dayjs from "dayjs";
import { FormsDe... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/pages/forms/[id]/connect.tsx | web/pages/forms/[id]/connect.tsx | import React from "react";
export default function FormIntegrationsPage() {
return <></>;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/web/@types/assets.d.ts | web/@types/assets.d.ts | declare module '*.png';
declare module '*.jpg';
declare module '*.svg';
declare module '*.gif';
declare module '*.txt';
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/next-env.d.ts | www/next-env.d.ts | /// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/grida/section-footer-cta.tsx | www/grida/section-footer-cta.tsx | import styled from "@emotion/styled";
import { useTranslation } from "next-i18next";
import React from "react";
/**
* `<FooterCtaSection>` ('footer-cta-section --width=50vh')
* - [Open in Figma](https://figma.com/file/Gaznaw1QHppxvs9UkqNOb0?node-id=8266:64063)
* - [Open in Grida](https://code.grida.co/files/Gaznaw1Q... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/grida/section-demo-type-content.tsx | www/grida/section-demo-type-content.tsx | import styled from "@emotion/styled";
import React from "react";
import { useInView } from "react-intersection-observer";
import { Prism as SyntaxHighlighter } from "react-syntax-highlighter";
import { vs } from "react-syntax-highlighter/dist/cjs/styles/prism";
import Typist from "react-typist";
export function CliDem... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/grida/section-hero.tsx | www/grida/section-hero.tsx | import React from "react";
import styled from "@emotion/styled";
import { useTranslation } from "next-i18next";
/**
* `<SectionHero>` ('section-hero')
* - [Open in Figma](https://figma.com/file/Gaznaw1QHppxvs9UkqNOb0?node-id=8266:64059)
* - [Open in Grida](https://code.grida.co/files/Gaznaw1QHppxvs9UkqNOb0?node=8266... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/grida/section-demo.tsx | www/grida/section-demo.tsx | import React, { useState } from "react";
import styled from "@emotion/styled";
import { CliDemoTypeContent } from "./section-demo-type-content";
import { useTranslation } from "next-i18next";
/**
* `<SectionDemo>` ('section-demo')
* - [Open in Figma](https://figma.com/file/Gaznaw1QHppxvs9UkqNOb0?node-id=8266:64061)
... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/grida/section-command.tsx | www/grida/section-command.tsx | import React from "react";
import styled from "@emotion/styled";
import { useTranslation } from "next-i18next";
/**
* `<SectionOneCommand>` ('section-one-command')
* - [Open in Figma](https://figma.com/file/Gaznaw1QHppxvs9UkqNOb0?node-id=8266:64060)
* - [Open in Grida](https://code.grida.co/files/Gaznaw1QHppxvs9Ukq... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/grida/section-configuration.tsx | www/grida/section-configuration.tsx | import styled from "@emotion/styled";
import { useTranslation } from "next-i18next";
import React from "react";
/**
* `<SectionConfiguration>` ('section-configuration')
* - [Open in Figma](https://figma.com/file/Gaznaw1QHppxvs9UkqNOb0?node-id=8266:64062)
* - [Open in Grida](https://code.grida.co/files/Gaznaw1QHppxvs... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/_app.tsx | www/pages/_app.tsx | /* eslint-disable import-helpers/order-imports */
import { ReactElement, ReactNode } from "react";
import { NextPage } from "next";
import { AppProps } from "next/app";
import { ThemeProvider } from "theme";
import Head from "next/head";
import { useRouter } from "next/router";
import React, { useEffect } from "react";... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/404.tsx | www/pages/404.tsx | import Error from "next/error";
import { getPageTranslations } from "utils/i18n";
// TODO: prefer light color scheme for 404 page
export default function NotFoundPage() {
return <Error statusCode={404} />;
}
export async function getStaticProps({ locale }) {
return {
props: {
...(await getPageTranslati... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/index.tsx | www/pages/index.tsx | import { motion } from "framer-motion";
import { NextPage, NextPageContext } from "next";
import React, { useCallback, useState, useEffect } from "react";
import { useCookies } from "react-cookie";
import { getPageTranslations } from "utils/i18n";
import CookieAccept from "components/cookie-accept";
import Sections fr... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/_document.tsx | www/pages/_document.tsx | import React from "react";
import { Html, Head, Main, NextScript, DocumentProps } from "next/document";
import { SEO_DEFAULTS } from "utils/seo";
import i18nextConfig from "../next-i18next.config";
import { keywords } from "utils/seo";
export default function Document(props: DocumentProps) {
const currentLocale =
... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/globalization/index.tsx | www/pages/globalization/index.tsx | import PageHead from "components/page-head";
import React from "react";
import Sections from "sections/globalization";
import { getPageTranslations } from "utils/i18n";
import PAGES from "utils/seo/pages";
export default function GlobalizationPage() {
return (
<div>
<PageHead type="data" {...PAGES.globaliz... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/labs/index.tsx | www/pages/labs/index.tsx | import Head from "next/head";
import styled from "@emotion/styled";
import Link from "next/link";
import React from "react";
import { getPageTranslations } from "utils/i18n";
export default function LabsPage() {
return (
<>
<Head>
<title>Grida Labs</title>
<meta
name="description"... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/ci/index.tsx | www/pages/ci/index.tsx | import React, { ReactElement, useRef } from "react";
import styled from "@emotion/styled";
import Head from "next/head";
import Link from "next/link";
import Image from "next/image";
import Footer from "components/footer";
import Header from "components/header";
import { PageLayoutConfig } from "layouts/index";
import ... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/_development/gridlayout.tsx | www/pages/_development/gridlayout.tsx | import React from "react";
import { Grid } from "layouts/grid";
import SectionLayout from "layouts/section";
export default function GridLayoutExample() {
return (
<SectionLayout variant="content-default">
<Grid start="5/8" end="8/8" marginTop="20px">
<div style={{ width: "100%", height: 20, backgr... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/vscode/index.tsx | www/pages/vscode/index.tsx | import React, { ReactElement } from "react";
import styled from "@emotion/styled";
import { css } from "@emotion/react";
import { useRouter } from "next/router";
import Footer from "components/footer";
import Header from "components/header";
import {
ActivityBar,
WindowHandle,
StatusBar,
Panel,
} from "componen... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/widgets/index.tsx | www/pages/widgets/index.tsx | import React from "react";
export default function WidgetsCatalogPage() {
return <h1>Widgets</h1>;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/engines/index.tsx | www/pages/engines/index.tsx | import React, { ReactElement, useRef } from "react";
import Head from "next/head";
import { Suspense } from "react";
import { Canvas, useLoader } from "@react-three/fiber";
import {
Environment,
Float,
Grid,
OrbitControls,
Stars,
} from "@react-three/drei";
import { GLTFLoader } from "three/examples/jsm/loade... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/assistant/index.tsx | www/pages/assistant/index.tsx | import Head from "next/head";
import React from "react";
import { HeroSection } from "sections/assistant/hero";
import { JoinWaitlistSection } from "sections/assistant/join-waitlist";
import { LogosSection } from "sections/assistant/logos";
import { PricingSection } from "sections/assistant/pricing";
import { getPageTr... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/assistant/invited/index.tsx | www/pages/assistant/invited/index.tsx | import React from "react";
import Head from "next/head";
import { getPageTranslations } from "utils/i18n";
import { HeroSection } from "sections/assistant/hero";
import { JoinWithCodeSection } from "sections/assistant/join-with-code";
import { LogosSection } from "sections/assistant/logos";
export default function Ass... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/games/index.tsx | www/pages/games/index.tsx | import styled from "@emotion/styled";
import LandingpageText from "components/landingpage/text";
import React from "react";
import { getPageTranslations } from "utils/i18n";
import { PageLayoutConfig } from "layouts/index";
import PageHead from "components/page-head";
export default function GamesPage() {
return (
... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/products/index.tsx | www/pages/products/index.tsx | import PageHead from "components/page-head";
import React from "react";
export default function ProductsIndexPage() {
return (
<>
<PageHead
type="data"
title="Products"
description="Grida products"
keywords={[]}
route="/products"
/>
<h1>Products</h1>
... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/whats-new/index.tsx | www/pages/whats-new/index.tsx | import React from "react";
const UpdateNoteMain = () => {
return <div></div>;
};
export default UpdateNoteMain;
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/whats-new/[name].tsx | www/pages/whats-new/[name].tsx | import React, { useState } from "react";
import { useRouter } from "next/router";
import useAsyncEffect from "utils/hooks/use-async-effect";
import axios from "axios";
import Head from "next/head";
import {
GithubReleaseNote,
getGithubReleaseNote,
} from "utils/methods/getGithubReleaseNote";
import { Flex } from "t... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/pricing/index.tsx | www/pages/pricing/index.tsx | import React from "react";
import PageHead from "components/page-head";
import Sections from "sections/pricing";
import PAGES from "utils/seo/pages";
import { getPageTranslations } from "utils/i18n";
export default function PricingPage() {
return (
<>
<PageHead type="data" {...PAGES.pricing} />
<Sec... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/figma-instant-auth-callback/index.tsx | www/pages/figma-instant-auth-callback/index.tsx | import styled from "@emotion/styled";
import { useRouter } from "next/router";
import React, { useEffect, useState } from "react";
import {
getAnonymousFigmaAccessTokenOneshot,
saveFigmaAccessToken__localstorage,
} from "utils/instant-demo/figma-anonymous-auth";
export default function FigmaInstantAuthCallback() ... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/customers/stories.tsx | www/pages/customers/stories.tsx | import React from "react";
export default function CustomersStoriesPage() {
return <h1>Customer Stories</h1>;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/customers/index.tsx | www/pages/customers/index.tsx | import React from "react";
export default function CustomersPage() {
return <h1>Customers</h1>;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/cli/index.tsx | www/pages/cli/index.tsx | import styled from "@emotion/styled";
import { useRouter } from "next/router";
import React, { useState } from "react";
import { SectionOneCommand } from "../../grida/section-command";
import { SectionConfiguration } from "../../grida/section-configuration";
import { SectionDemo } from "../../grida/section-demo";
impo... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/figlint/index.tsx | www/pages/figlint/index.tsx | export default function FigLintPage() {
return <h1>FigLint</h1>;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/first-aid/index.tsx | www/pages/first-aid/index.tsx | export default function FirstAidPage() {
return <h1>Grda First Aid - Starter Kit</h1>;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/first-aid/landingpage-kit.tsx | www/pages/first-aid/landingpage-kit.tsx | import React from "react";
export default function LandingPageFirstAidKitPage() {
return <h1>Grida First Aid - Landing Page Kit</h1>;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/projects/index.tsx | www/pages/projects/index.tsx | import PageHead from "components/page-head";
import React from "react";
export default function ProjectsIndexPage() {
return (
<>
<PageHead
type="data"
title="Projects"
description="Grida projects"
keywords={[]}
route="/projects"
/>
<h1>Projects</h1>
... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/enterprise/api/index.tsx | www/pages/enterprise/api/index.tsx | import React, { ReactElement, useRef } from "react";
import styled from "@emotion/styled";
import Head from "next/head";
import Link from "next/link";
import Image from "next/image";
import Footer from "components/footer";
import Header from "components/header";
import SectionLayout from "layouts/section";
import { Pag... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/careers/index.tsx | www/pages/careers/index.tsx | import React, { ReactElement } from "react";
import styled from "@emotion/styled";
import Footer from "components/footer";
import Header from "components/header";
import { useRouter } from "next/router";
import { getPageTranslations } from "utils/i18n";
import { useTranslation } from "next-i18next";
import LandingpageT... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/contact/index.tsx | www/pages/contact/index.tsx | import React from "react";
export default function ContactIndexPage() {
return <h1>Contact</h1>;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/contact/sales.tsx | www/pages/contact/sales.tsx | import Head from "next/head";
import Script from "next/script";
import React from "react";
import { Widget } from "@typeform/embed-react";
import { getPageTranslations } from "utils/i18n";
export default function ContactSalesPage() {
return (
<>
<Head>
<title>Contact Sales</title>
<Script s... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/pages/newsroom/index.tsx | www/pages/newsroom/index.tsx | import React from "react";
export default function NewsroomIndexPage() {
return <h1>Newsroom</h1>;
}
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/index.ts | www/sections/index.ts | export * from "./landingpage";
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/globalization/final-cta.section.tsx | www/sections/globalization/final-cta.section.tsx | import styled from "@emotion/styled";
import LandingpageText from "components/landingpage/text";
import SectionLayout from "layouts/section";
import React from "react";
import { Button, Flex } from "theme-ui";
export default function SectionFinalCta() {
return (
<SectionLayout alignContent="center">
<Flex ... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/globalization/faq.section.tsx | www/sections/globalization/faq.section.tsx | import FAQs from "components/faq";
import { FaqDisplayData } from "components/faq/interface";
import SectionLayout from "layouts/section";
import React from "react";
const GLOBALIZATION_QUESTIONS: FaqDisplayData = [
{
query: "Is it suited for non design based text translation?",
answer: "TBD",
},
{
q... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/globalization/hero.section.tsx | www/sections/globalization/hero.section.tsx | import styled from "@emotion/styled";
import BlankArea from "components/blank-area";
import LandingpageText from "components/landingpage/text";
import SectionLayout from "layouts/section";
import React from "react";
import { Button } from "theme-ui";
export default function GlobalizationHeroSection() {
return (
... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/globalization/index.ts | www/sections/globalization/index.ts | import SectionFinalCta from "./final-cta.section";
import SectionFaq from "./faq.section";
import GlobalizationHeroSection from "./hero.section";
import GlobalizationQuickDemoSayHiSection from "./say-hi-quick-demo.section";
import GlobalizationUnimitYourStoryTellingSection from "./various-content-types.section";
import... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/globalization/features-list-up.section/index.tsx | www/sections/globalization/features-list-up.section/index.tsx | import styled from "@emotion/styled";
import BlankArea from "components/blank-area";
import FeatureCardItem from "components/globalization/feature-card-item";
import { FeatureListupCardItemDisplayData } from "components/globalization/feature-card-item/interface";
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/globalization/say-hi-quick-demo.section/index.tsx | www/sections/globalization/say-hi-quick-demo.section/index.tsx | import ActionItem from "components/action-item";
import LandingpageText from "components/landingpage/text";
import React from "react";
import Image from "next/image";
import SectionLayout from "layouts/section";
import styled from "@emotion/styled";
import BlankArea from "components/blank-area";
export default functio... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/globalization/various-content-types.section/index.tsx | www/sections/globalization/various-content-types.section/index.tsx | import styled from "@emotion/styled";
import ActionItem from "components/action-item";
import BlankArea from "components/blank-area";
import LandingpageText from "components/landingpage/text";
import SectionLayout from "layouts/section";
import Image from "next/image";
import React from "react";
import { Flex } from "t... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/index.ts | www/sections/landingpage/index.ts | import Section__BornToBeHeadLess from "./born-to-be-headless";
import Section__CTASeeTheMagic from "./cta-see-the-magic";
import DesignOnceRunAnywhere from "./design-once-run-anywhere";
import Hero from "./hero";
import LayoutDetect from "./layout-detect";
import OnlineApp from "./everything-instant";
import Products f... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/_archives/collaborate/storybook-style.ts | www/sections/landingpage/_archives/collaborate/storybook-style.ts | import styled from "@emotion/styled";
import LandingpageText from "components/landingpage/text";
import { media } from "utils/styled/media";
export const Description = styled(LandingpageText)`
margin-top: 36px;
margin-left: 120px;
max-width: 655px;
/* ${props => media("0px", props.theme.breakpoints[0])} {
... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/_archives/collaborate/index.tsx | www/sections/landingpage/_archives/collaborate/index.tsx | import styled from "@emotion/styled";
import SectionLayout from "layouts/section";
import Image from "next/image";
import React from "react";
import { Flex } from "theme-ui";
import BlankArea from "components/blank-area";
import Icon from "components/icon";
import LandingpageText from "components/landingpage/text";
im... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/_archives/hero-v2021_11/storybook-style.ts | www/sections/landingpage/_archives/hero-v2021_11/storybook-style.ts | import styled from "@emotion/styled";
import LandingpageText from "components/landingpage/text";
export const HeroText = styled(LandingpageText)`
max-width: 920px;
`;
export const Description = styled(LandingpageText)`
max-width: 800px;
margin-top: 40px;
`;
| typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
gridaco/legacy | https://github.com/gridaco/legacy/blob/8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582/www/sections/landingpage/_archives/hero-v2021_11/index.tsx | www/sections/landingpage/_archives/hero-v2021_11/index.tsx | import styled from "@emotion/styled";
import SectionLayout from "layouts/section";
import React from "react";
import BlankArea from "components/blank-area";
import { ElevatedVideoPlayer } from "components/landingpage/effect";
import LandingMainCtaButton from "components/landingpage/main-cta-button";
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/landingpage/shared-cta-tocode/modal-content-invalid-input.tsx | www/sections/landingpage/shared-cta-tocode/modal-content-invalid-input.tsx | import styled from "@emotion/styled";
import React from "react";
export function ModalInvalidInputContentBody() {
return (
<RootWrapperContentBody>
<Spacer></Spacer>
<Title>Woopsy.</Title>
<Body>
That’s not a valid figma design url.{" "}
<u>
<a
href="https:... | 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-done.tsx | www/sections/landingpage/shared-cta-tocode/modal-content-figma-auth-done.tsx | import styled from "@emotion/styled";
import React from "react";
export function FigmaAuthDoneModalContents({
onClick,
}: {
onClick: () => void;
}) {
return (
<RootWrapperContents>
<Spacer></Spacer>
<Body>Great. we’re now ready to go.</Body>
<Button onClick={onClick}>Let’s go</Button>
<... | typescript | Apache-2.0 | 8fc8b1fb2f3e4419eeaa49193ddb5c1fade82582 | 2026-01-05T05:01:14.213250Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.