Standard.site landing page built in Next.js
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add llms.txt nav, sequoia config, and layout tweaks

+13 -3
+2 -1
.gitignore
··· 41 41 next-env.d.ts 42 42 43 43 # jetbrains 44 - /.idea 44 + /.idea 45 + .sequoia-state.json
+1 -1
app/components/MobileNav.tsx
··· 88 88 <div 89 89 className={ `p-4 relative flex flex-col gap-6 z-40 mx-auto max-w-[38rem] w-full min-h-0 overflow-hidden rounded-2xl transition-all duration-300 ease-in-out ${ 90 90 isOpen 91 - ? 'bg-zinc-950 dark:bg-zinc-50 text-zinc-50 dark:text-zinc-950 h-[31rem]' 91 + ? 'bg-zinc-950 dark:bg-zinc-50 text-zinc-50 dark:text-zinc-950 h-[34rem]' 92 92 : 'text-base-content h-15' 93 93 }` }> 94 94 <div className="flex justify-between items-center">
+1
app/data/content.ts
··· 8 8 9 9 export const SECONDARY_NAV_ITEMS = [ 10 10 { label: 'Documentation', href: '/docs/introduction' }, 11 + { label: 'llms.txt', href: '/llms.txt' }, 11 12 ] 12 13 13 14 export const EXTERNAL_LINKS = [
+1 -1
app/docs/layout.tsx
··· 17 17 </section> 18 18 19 19 <main className="flex flex-col w-xl gap-8 min-w-0"> 20 - <article className="min-w-0"> 20 + <article className="min-w-0 @container/content"> 21 21 {children} 22 22 </article> 23 23 </main>
app/icon-lg.png

This is a binary file and will not be displayed.

public/.well-known/.gitkeep

This is a binary file and will not be displayed.

+1
public/.well-known/site.standard.publication
··· 1 + at://did:plc:re3ebnp5v7ffagz6rb6xfei4/site.standard.publication/3me5vykp6lf2y
+7
sequoia.json
··· 1 + { 2 + "siteUrl": "https://standard.site", 3 + "contentDir": "./content", 4 + "outputDir": "./out", 5 + "pathPrefix": "/docs", 6 + "publicationUri": "at://did:plc:re3ebnp5v7ffagz6rb6xfei4/site.standard.publication/3me5vykp6lf2y" 7 + }