Skip to content

Commit

Permalink
πŸ› Fix consulting index (#898)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradystroud authored Jun 30, 2023
1 parent 0b7b88a commit d172ab8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions components/layout/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import dynamic from "next/dynamic";
import Image from "next/image";
import Link from "next/link";
import dayjs from "dayjs";
import relativeTime from "dayjs/plugin/relativeTime";
import timezone from "dayjs/plugin/timezone";
import utc from "dayjs/plugin/utc";
import dynamic from "next/dynamic";
import Image from "next/image";
import Link from "next/link";
import { Container } from "../util/container";
import { SocialIcons, SocialTypes } from "../util/socialIcons";

dayjs.extend(timezone);
dayjs.extend(utc);
dayjs.extend(relativeTime);

export const Footer = () => {
return (
Expand Down

0 comments on commit d172ab8

Please sign in to comment.