> ## Documentation Index
> Fetch the complete documentation index at: https://docs.t3gemstone.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Akademi

> Eğitim Videoları

export const HeroCard = ({filename, title, description, href}) => {
  return <a className="group cursor-pointer pb-8" href={href}>
      <img src={`https://raw.githubusercontent.com/t3gemstone/docs/refs/heads/main/images/${filename}.png`} className="block dark:hidden pointer-events-none group-hover:scale-105 transition-all duration-100" />
      <img src={`https://raw.githubusercontent.com/t3gemstone/docs/refs/heads/main/images/${filename}-dark.png`} className="pointer-events-none group-hover:scale-105 transition-all duration-100 hidden dark:block" />
      <h3 className="mt-5 text-gray-900 dark:text-zinc-50 font-medium">{title}</h3>
      <span className="mt-1.5">
        {description}
      </span>
    </a>;
};

<div className="relative">
  <div className="px-4 py-16 lg:py-48 lg:pb-24 max-w-3xl mx-auto">
    <h1 className="text-4xl font-medium text-center text-gray-900 dark:text-zinc-50 tracking-tight">
      Gemstone Eğitim Videoları
    </h1>

    <p className="max-w-xl mx-auto px-4 mt-4 text-lg text-center text-gray-500 dark:text-zinc-500">
      Bu bölüm; Linux dünyası, Gömülü Yazılım ve Geliştirme Kartları konusunda daha önce çalışma yapmamış, Linux kullanmamış başlangıç seviyesinde olanlar için hazırlanmış temel eğitim videoları içermektedir.**(Yapım aşamasında..)**
    </p>

    <div className="px-6 lg:px-0 mt-12 lg:mt-24 grid sm:grid-cols-3 gap-x-6 gap-y-4">
      <HeroCard filename="components" title="Linux Temelleri" description="Bilgisayarınıza Linux kurulumu ve kullanımı hakkında temel bilgiler edinin" />

      <HeroCard filename="components" title="Gemstone Kurulum ve Kullanımı" description="Kartınızı satın aldıktan sonra hazır hale getirin" />

      <HeroCard filename="components" title="Gemstone ile Yazılım Geliştirme" description="Gemstone üzerinde yazılım geliştirin" />

      <HeroCard filename="components" title="Gemstone Donanım ve Yazılım Özelleştirme" description="Donanım ve yazılımını daha yakından tanıyarak özelleştirin" />

      <HeroCard filename="components" title="Gemstone Projeleri" description="İnsansız araçlar veya çeşitli IoT projeler geliştirin" />

      <HeroCard filename="components" title="Sizlerden Gelenler" description="Topluluk tarafından yapılan projeleri inceleyin" />
    </div>
  </div>
</div>
