-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f36d0c1
commit 7826263
Showing
3 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
basePath: "/tcp1p-pages", | ||
assetPrefix: "/tcp1p-pages", | ||
output: "export", | ||
images:{ | ||
unoptimized: true | ||
} | ||
} | ||
|
||
module.exports = nextConfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,16 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; | |
import { faGithub, faLinkedin } from "@fortawesome/free-brands-svg-icons"; | ||
import { faEnvelope} from "@fortawesome/free-solid-svg-icons"; | ||
import Image from "next/image"; | ||
|
||
import ctftimelogo from "../../../public/ctftime.png" | ||
export function TopFooter() { | ||
return <> | ||
<footer className="footer footer-center p-10 p-t text-base-content rounded"> | ||
<nav> | ||
<div className="grid grid-flow-col gap-4 p-4"> | ||
<a href="https://www.linkedin.com/company/tcp1p/" target="_blank"><FontAwesomeIcon icon={faLinkedin} className="text-3xl" /></a> | ||
<a href="https://github.com/TCP1P" target="_blank"><FontAwesomeIcon icon={faGithub} className="text-3xl" /></a> | ||
<a href="https://ctftime.org/team/187248" target="_blank"><Image src="/ctftime.png" width={28} height={28} alt={"CTFtime"}></Image></a> | ||
<a href="https://ctftime.org/team/187248" target="_blank"><Image src={ctftimelogo} width={28} height={28} alt={"CTFtime"}></Image></a> | ||
<a href="mailto:[email protected]" target="_blank"><FontAwesomeIcon icon={faEnvelope} className="text-3xl" /></a> | ||
</div> | ||
<p>TCP1P • © 2024</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters