Skip to content

Commit

Permalink
chore: remove duplicate github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
binodnepali committed Apr 29, 2024
1 parent f446430 commit 5b750c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 26 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/deno.yml

This file was deleted.

12 changes: 8 additions & 4 deletions routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ import Bio from "../components/Bio.tsx";
import Experience from "../components/Experience.tsx";
import Navbar from "../islands/Navbar.tsx";

import data from "../data/linkedin-profile.json" with {
type: "json",
};
// import data from "../data/linkedin-profile.json" with {
// type: "json",
// };

import { getProfile } from "../src/server/getProfile.ts";

export default async function Home() {
const data = await getProfile();

export default function Home() {
return (
<>
<header>
Expand Down

0 comments on commit 5b750c9

Please sign in to comment.