Skip to content

Commit

Permalink
experimenting something...
Browse files Browse the repository at this point in the history
  • Loading branch information
upayanmazumder committed Nov 4, 2024
1 parent 7be24be commit 596cdc9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qwik/src/components/footer/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { component$, useStylesScoped$ } from '@builder.io/qwik';
import footerStyles from './footer.css?inline';
import SocialMediaIcons from "../social-media/personal/personal";
import packageJson from "../../../../package.json";

export default component$(() => {
useStylesScoped$(footerStyles);
const version = packageJson.version;

return (
<footer class="footer">
Expand All @@ -13,7 +15,7 @@ export default component$(() => {
<span class="spacer"> | </span>
<a href="/p/privacy-policy" class="footer-link"> Privacy Policy</a>
</div>
<p class="footer-copy">&copy; {new Date().getFullYear()} Upayan</p>
<p class="footer-copy">&copy; {new Date().getFullYear()} Upayan v{version} </p>
</footer>
);
});

0 comments on commit 596cdc9

Please sign in to comment.