in src/pages/index.tsx [46:97]
export default function Home() {
return (
<Layout title="Kubernetes GitHub Action Toolkit" description="Automate Kubernetes workflows using GitHub Actions.">
<main className={styles.main}>
{/* Hero Section */}
<h1 className={styles.title}>Kubernetes GitHub Action Toolkit 🚀</h1>
<p className={styles.subtitle}>
A collection of GitHub Actions to streamline Kubernetes deployments, security, and automation.
</p>
{/* Call-to-Action Button */}
<Link to="/docs/k8s-create-secret" className={clsx(styles.button, styles.primaryButton)}>
📖 View Documentation
</Link>
{/* Quick Navigation to Docs */}
<div className={styles.grid}>
<Link to="/docs/k8s-create-secret" className={styles.card}>
<h3>🔐 k8s-create-secret</h3>
<p>Create and manage Kubernetes secrets.</p>
</Link>
<Link to="/docs/k8s-deploy" className={styles.card}>
<h3>🚀 k8s-deploy</h3>
<p>Deploy Kubernetes manifests easily.</p>
</Link>
<Link to="/docs/k8s-lint" className={styles.card}>
<h3>🔍 k8s-lint</h3>
<p>Lint Kubernetes YAML files for best practices.</p>
</Link>
<Link to="/docs/k8s-set-context" className={styles.card}>
<h3>🌐 k8s-set-context</h3>
<p>Set Kubernetes context for workflows.</p>
</Link>
<Link to="/docs/setup-helm" className={styles.card}>
<h3>⚓ setup-helm</h3>
<p>Install and use Helm for Kubernetes.</p>
</Link>
<Link to="/docs/setup-kubectl" className={styles.card}>
<h3>📦 setup-kubectl</h3>
<p>Install and use `kubectl` in GitHub Actions.</p>
</Link>
</div>
</main>
</Layout>
);
}