Skip to content

Commit

Permalink
Add sections to index
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvarner committed Mar 20, 2024
1 parent 94014b3 commit 6d6697a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ import { TimelineType, timelineImages } from "~/components/home/timelineUtils";
import SelectedImage from "~/components/home/SelectedImage.client";
import type { TFigure } from "~/types/figureType";

const sections = [
{
title: "",
id: "",
},
];

export default function Index() {
const [timelineType, setTimelineType] = useState(TimelineType.Draggable);
const [selectedImage, setSelectedImage] = useState<TFigure>(
Expand All @@ -23,6 +30,7 @@ export default function Index() {
backgroundColor: "playfairPrimary",
primaryTextColor: "white",
footnotes: [],
sections,
}}
>
<main
Expand Down

0 comments on commit 6d6697a

Please sign in to comment.