Skip to content

Commit

Permalink
remove unused instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Keshav-writes-code committed Sep 19, 2024
1 parent 24ba161 commit 23856d9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 28 deletions.
7 changes: 0 additions & 7 deletions src/components/home_comps/header.astro
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
---
import { Icon } from "astro-icon/components";
import type { NavItem } from "../../types.ts";
const navItems: Array<NavItem> = [
{ title: "Features", url: "#features" },
{ title: "Compatibility", url: "#compatibility" },
{ title: "Showcase", url: "#showcase" },
];
const icons = [
{
Expand Down
37 changes: 16 additions & 21 deletions src/types.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
export interface CompatibilityItem {
icon: string;
title: string;
url: string;
}

export interface FeatureItem {
description: string;
icon: string;
title: string;
}

export interface FooterLink {
description: string;
icon: string;
url: string;
}

export interface NavItem {
title: string;
url: string;
}
icon: string;
title: string;
url: string;
}

export interface FeatureItem {
description: string;
icon: string;
title: string;
}

export interface FooterLink {
description: string;
icon: string;
url: string;
}

0 comments on commit 23856d9

Please sign in to comment.