Home / Function/ WhatWillILearn() — supabase Function Reference

WhatWillILearn() — supabase Function Reference

Architecture documentation for the WhatWillILearn() function in what-will-i-learn.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/learn/components/what-will-i-learn.tsx lines 57–138

export function WhatWillILearn() {
  return (
    <section className="grid gap-8">
      <div className="grid gap-2 max-w-2xl">
        <h3 className="text-2xl font-bold mb-4">What will I learn?</h3>

        <p className="text-base text-foreground-light">
          In the fundamental courses, you&apos;ll learn all the basics:
        </p>
      </div>

      <div className="grid gap-6 md:grid-cols-2">
        {learningTracks.map((track) => {
          const Icon = track.icon
          return (
            <Card key={track.title} className="h-full border-border/60">
              <CardHeader className="grid gap-2 border-b border-border/40">
                <Icon className="h-5 w-5 text-brand-500" />
                <CardTitle className="text-base font-semibold text-foreground">
                  {track.title}
                </CardTitle>
                <CardDescription className="text-sm text-foreground-light">
                  {track.description}
                </CardDescription>
              </CardHeader>
            </Card>
          )
        })}
      </div>
      <div className="mt-8">
        <h4 className="text-lg font-bold mb-2">Smart Office project</h4>
        <p className="text-base text-foreground-light">
          In the Smart Office project, you&apos;ll learn how to build a full-featured Dashboard:
        </p>
        <div className="grid grid-cols-12 gap-12 mt-6">
          <div className="col-span-6">
            <Image
              src={'/img/smart-office.png'}
              alt="Smart Office project dashboard screenshot"
              className="w-full h-auto"
              width={1000}
              height={875}
            />
          </div>
          <div className="col-span-6">
            <ul className="grid gap-6 text-foreground-light ">
              <li className="grid grid-cols-[auto,1fr] gap-3 border-b border-border/40 pb-3">
                <span className="flex h-9 w-9 items-center justify-center rounded-md bg-brand-500/10 text-brand-500">
                  <Timer className="h-5 w-5" />
                </span>
                <span>Real-time room monitoring that tracks live occupancy, sensor readings</span>
              </li>
              <li className="grid grid-cols-[auto,1fr] gap-3 border-b border-border/40 pb-3">
                <span className="flex h-9 w-9 items-center justify-center rounded-md bg-brand-500/10 text-brand-500">
                  <CalendarRange className="h-5 w-5" />
                </span>
                <span>Booking management with live status filters, calendar integrations.</span>
              </li>
              <li className="grid grid-cols-[auto,1fr] gap-3 border-b border-border/40 pb-3">
                <span className="flex h-9 w-9 items-center justify-center rounded-md bg-brand-500/10 text-brand-500">
                  <History className="h-5 w-5" />
                </span>
                <span>
                  Advanced analytics that surface 30+ days of utilization trends and patterns.
                </span>
              </li>
              <li className="grid grid-cols-[auto,1fr] gap-3">
                <span className="flex h-9 w-9 items-center justify-center rounded-md bg-brand-500/10 text-brand-500">
                  <BarChart3 className="h-5 w-5" />
                </span>
                <span>
                  Detect capacity issues, open facilities tasks, and track resolution SLAs without
                  leaving the app.
                </span>
              </li>
            </ul>
          </div>
        </div>
      </div>
    </section>
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free