import { Logo } from "@instill-ai/design-system"; import Image from "next/image"; export const AuthPageBase = ({ children }: { children: React.ReactNode }) => { return
{children}
; }; const Container = ({ children }: { children: React.ReactNode }) => { return
{children}
; }; const Content = ({ children }: { children: React.ReactNode }) => { return (

Meet{" "} Instill Core

The Backbone for All Your AI Needs

A no-code/low-code platform to build AI-first applications to process your text, image, video and audio in minutes

© Instill AI 2023

auth-page-bg-strip
{children}
); }; AuthPageBase.Container = Container; AuthPageBase.Content = Content;