Skip to content

Commit

Permalink
Organize files
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-matsui committed Dec 26, 2023
1 parent 77ef716 commit 81337d0
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion components/Footer.tsx → app/_components/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default function Footer() {
export function Footer() {
return (
<footer className="container mx-auto max-w-7xl pb-12 px-12">
<div className="flex flex-col justify-center items-center gap-1">
Expand Down
4 changes: 2 additions & 2 deletions components/Header.tsx → app/_components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import { faGithub } from "@fortawesome/free-brands-svg-icons";
import { faBookOpen, faHeart } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";

import { Logo } from "./Logo";
import { Logo } from "./logo";

export default function Header() {
export function Header() {
return (
<Navbar>
<NavbarBrand>
Expand Down
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Analytics } from "@vercel/analytics/react";

import Footer from "~/components/Footer";
import Header from "~/components/Header";
import { Providers } from "~/app/providers";
import { Footer } from "./_components/footer";
import { Header } from "./_components/header";
import { Providers } from "./providers";

import "./globals.css";

Expand Down
3 changes: 2 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Code } from "@nextui-org/react";
import { Button, Link } from "@nextui-org/react";
import { faDownload, faArrowRight } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { WindowActions } from "~/components/WindowActions";

import { WindowActions } from "./_components/window-actions";

export const metadata: Metadata = {
title: "Poac - Intuitive and fast C++ package manager and build system",
Expand Down

0 comments on commit 81337d0

Please sign in to comment.