Skip to content

Commit 64d1f8c

Browse files
committed
Update Footer
1 parent eb1ba7c commit 64d1f8c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/shared/Footer.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ const resources = [
1313
1414
const companyLinks = [
1515
{ href: "/about", icon: "fas fa-info-circle", label: "About Us" },
16-
{ href: "/team", icon: "fas fa-users", label: "Team" }
16+
{ href: "/team", icon: "fas fa-users", label: "Team" },
17+
{ href: "https://policies.kodular.io", icon: "fas fa-file-contract", label: "Policies", external: true }
1718
];
1819
1920
const socialLinks = [
@@ -100,7 +101,7 @@ const socialLinks = [
100101
<ul class="space-y-3">
101102
{companyLinks.map((link) => (
102103
<li>
103-
<a href={link.href} class="group flex items-center space-x-3 text-gray-700 hover:text-gray-900 transition-colors duration-200">
104+
<a href={link.href} target={link.external ? "_blank" : undefined} class="group flex items-center space-x-3 text-gray-700 hover:text-gray-900 transition-colors duration-200">
104105
<div class="flex items-center justify-center w-8 h-8 rounded-lg bg-gray-100 border border-gray-300 group-hover:bg-primary-600 group-hover:border-primary-500 text-gray-600 group-hover:text-white transition-all duration-200">
105106
<i class={`${link.icon} text-sm`}></i>
106107
</div>
@@ -149,8 +150,7 @@ const socialLinks = [
149150
<!-- Copyright -->
150151
<div class="flex flex-col sm:flex-row justify-between items-center gap-4 text-gray-600 text-sm">
151152
<p class="text-center sm:text-left">
152-
<span class="font-medium text-gray-700">Junnovate Limited</span> &copy; {new Date().getFullYear()} -
153-
<span class="text-primary-600 font-semibold">Kodular</span> &reg; | All Rights Reserved
153+
&copy; {new Date().getFullYear()} Kodular. All rights reserved.
154154
</p>
155155
<div class="flex flex-wrap justify-center sm:justify-end gap-4">
156156
<a

0 commit comments

Comments
 (0)