<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Masked But Aware</title>
    <description>The latest articles on DEV Community by Masked But Aware (@maskedbutaware).</description>
    <link>https://dev.to/maskedbutaware</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3759833%2Fddbd6004-b4a4-4311-b3bb-ceb4ebd56103.png</url>
      <title>DEV Community: Masked But Aware</title>
      <link>https://dev.to/maskedbutaware</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/maskedbutaware"/>
    <language>en</language>
    <item>
      <title>Building a Free Autism Resource Platform with Next.js 16 &amp; Firebase</title>
      <dc:creator>Masked But Aware</dc:creator>
      <pubDate>Sun, 08 Feb 2026 10:48:58 +0000</pubDate>
      <link>https://dev.to/maskedbutaware/building-a-free-autism-resource-platform-with-nextjs-16-firebase-575o</link>
      <guid>https://dev.to/maskedbutaware/building-a-free-autism-resource-platform-with-nextjs-16-firebase-575o</guid>
      <description>&lt;p&gt;Last year I started building maskedbutaware.nl (&lt;a href="https://www.maskedbutaware.nl/" rel="noopener noreferrer"&gt;https://www.maskedbutaware.nl/&lt;/a&gt;) — a completely free platform about autism masking. No ads, no paywalls. Just information that should be accessible to everyone.&lt;/p&gt;

&lt;p&gt;The Stack&lt;/p&gt;

&lt;p&gt;Next.js 16 with App Router, React 19, Firebase (Auth + Firestore), Tailwind CSS 4, TypeScript, self-hosted IBM Plex fonts. Deployed on Vercel.&lt;/p&gt;

&lt;p&gt;Bilingual Without i18n Libraries&lt;/p&gt;

&lt;p&gt;The site serves Dutch and English. Instead of translation keys and middleware, each language gets its own component tree:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/app/learn/wat-is-masking/page.tsx        ← Dutch
/app/en/learn/what-is-masking/page.tsx    ← English
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Full control per language, zero runtime overhead. A locale mapping file handles hreflang alternates for SEO.&lt;/p&gt;

&lt;p&gt;Firebase: Debounce Your Writes&lt;/p&gt;

&lt;p&gt;Interactive tools (burnout checklist, trigger mapping, body scan) sync via Firestore with onSnapshot. Firestore bills per write — a 1200ms debounce cut writes by ~80%.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const debouncedSave = useMemo(
  () =&amp;gt; debounce((data: ToolState) =&amp;gt; {
    if (user?.uid) {
      setDoc(doc(db, 'tools', user.uid), data, { merge: true });
    }
  }, 1200),
  [user?.uid]
);

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Accessibility as Default&lt;/p&gt;

&lt;p&gt;Self-hosted fonts (no Google CDN dependency), no infinite scroll, consistent layout that never moves, prefers-reduced-motion respected, high contrast by default. Lighthouse: 100 / 96 / 100 / 100.&lt;/p&gt;

&lt;p&gt;Lessons Learned&lt;/p&gt;

&lt;p&gt;Start with the sitemap. I had pages live for weeks that search engines couldn't find because they weren't in the sitemap.&lt;/p&gt;

&lt;p&gt;Plan URLs first. Renaming routes after indexing means redirect headaches.&lt;/p&gt;

&lt;p&gt;Use a CMS for content. React components work but make non-technical contributions impossible. Next time: MDX or headless CMS.&lt;/p&gt;

&lt;p&gt;255 pages, two languages, all free. If you're building a resource site for an underserved community — it's worth the effort.&lt;/p&gt;

&lt;p&gt;maskedbutaware.nl (&lt;a href="https://www.maskedbutaware.nl/" rel="noopener noreferrer"&gt;https://www.maskedbutaware.nl/&lt;/a&gt;) — Free resources about autism masking.&lt;/p&gt;

</description>
      <category>nextjs</category>
      <category>firebase</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
