Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Boegie19 committed Apr 22, 2023
1 parent 096ad4f commit b7e5076
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 66 deletions.
3 changes: 1 addition & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules/
.next/
.env.local
.env.template
src/old_pages/
.env.template
3 changes: 2 additions & 1 deletion src/components/sections/home/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import IconLink from "@/components/atoms/IconLink";
import { FacebookIco, TwitterIcon, GithubIcon, YoutubeIcon } from "@/components/icons/social";
import Image from "next/image";
import {fetchAPI, getStrapiURL} from "@/utils/api";
export default function Hero({data}) {
export default async function Hero({data}) {
//const members = await fetchAPI("/api/members")
return (
<section className="relative pt-24 sm:pt-32 lg:pt-36 w-full">
<div className="absolute -left-32 -top-28 w-2/5 aspect-square rounded-full border-[2rem] border-primary/10"></div>
Expand Down
48 changes: 0 additions & 48 deletions src/old_pages/_app.tsx

This file was deleted.

14 changes: 0 additions & 14 deletions src/old_pages/_document.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/old_pages/faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Question from "@/components/atoms/question";
import PageHeader from "@/components/elements/PageHeader";
import Head from "next/head";
import { useCallback, useState } from "react";
import AppContainer from "../app/components/atoms/AppContainer";
import AppContainer from "@/components/atoms/AppContainer";

export default function Faq() {
const [open, setOpen] = useState<string>("")
Expand Down

0 comments on commit b7e5076

Please sign in to comment.