Skip to content

Commit

Permalink
Merge pull request #340 from hngprojects/fix-lint-issue
Browse files Browse the repository at this point in the history
fix page not found
  • Loading branch information
Samadeen authored Jul 22, 2024
2 parents 6b1d384 + 5562867 commit 5d14e73
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/routes/_index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type { MetaFunction } from "@remix-run/node";

import FindSection from "~/components/layout/home/FindSection";
import HeroSection from "~/components/layout/home/HeroSection";
import HowSection from "~/components/layout/home/HowSection";
import TestimonialsSection from "~/components/layout/home/TestimonialsSection";
import UsersSection from "~/components/layout/home/UsersSection";
import FindSection from "~/components/pages/home/FindSection";
import HeroSection from "~/components/pages/home/HeroSection";
import HowSection from "~/components/pages/home/HowSection";
import TestimonialsSection from "~/components/pages/home/TestimonialsSection";
import UsersSection from "~/components/pages/home/UsersSection";

export const meta: MetaFunction = () => {
return [
Expand Down

0 comments on commit 5d14e73

Please sign in to comment.