"use client"; import NewPostButton from "@/ui/new-post-button"; import Image from "next/image"; import Link from "next/link"; import { Session } from "next-auth"; import { TypeAnimation } from "react-type-animation"; import Checked from "@/ui/shared/icons/checked"; import { Account_Plans } from "@/lib/consts"; import { CardItem } from "./card"; import { motion } from "framer-motion"; export function Welcome() { return (

Lightweight {" "} .
AI Powered .
Markdown

); } export function Landing({ session }: { session: Session | null }) { return ( <>
{"example"}

Rich editing components

📖 Integrate rich text, Markdown, and final render with JSON.

{"example"}

AI empowering writing

🎉 Continue writing, editing, translation, chat with AI, all in one.

{"example"}

Online Collaboration

👨‍👩‍👦 One click to start real-time online collaboration among multiple people.

{"example"}

Export & Theme

🍥 One click simple export of PDF, images, Markdown, Json files

PLAN

Free

${Account_Plans[0].pay}
  • Unlimited number of local notes
  • {Account_Plans[0].note_upload_count} notes upload to Cloud
  • AI generates {Account_Plans[0].ai_generate_day} times per day
  • AI generates up to {Account_Plans[0].ai_generate_chars}{" "} characters per time
  • Less than {Account_Plans[0].image_upload_size}MB for upload image per time
Beta for free

Basic

${Account_Plans[1].pay}

  • Unlimited number of local notes
  • Unlimited number of Cloud notes
  • AI generates {Account_Plans[1].ai_generate_day} times per day
  • AI generates up to {Account_Plans[1].ai_generate_chars}{" "} characters per time
  • Less than {Account_Plans[1].image_upload_size}MB for upload image per time
  • All subsequent features will be used for free

Pro

${Account_Plans[2].pay}

  • Unlimited number of local notes
  • Unlimited number of Cloud notes
  • AI generates {Account_Plans[2].ai_generate_day} times per day
  • AI generates up to {Account_Plans[2].ai_generate_chars}{" "} characters per time
  • Less than {Account_Plans[2].image_upload_size}MB for upload image per time
  • All subsequent features will be used for free
); }