Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import HeroSection from "../components/HeroSection.astro";
import Examples from "../components/Examples.astro";
import UsecaseList from "../components/UsecaseList.astro";
import OpenSourceLove from "../components/OpenSourceLove.astro";

const currentYear = new Date().getFullYear();
---
<BaseLayout title="driver.js">
<HeroSection />
Expand All @@ -29,7 +31,7 @@ import OpenSourceLove from "../components/OpenSourceLove.astro";
<div class="py-8 bg-black text-white">
<Container>
<p class="text-lg text-white text-center">
MIT Licensed &copy; 2024
MIT Licensed &copy; {currentYear}
<span class="hidden sm:inline">
<span class="mx-3">&middot;</span>
<a href="/docs/installation" class="">
Expand Down