Skip to content

Commit

Permalink
feat: add website in development
Browse files Browse the repository at this point in the history
  • Loading branch information
paulohebert committed Jul 11, 2024
1 parent 443d425 commit dd293fa
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
Binary file added public/inovejr-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 21 additions & 2 deletions src/app/(homepage)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { About } from "./_components/About";
/* import { About } from "./_components/About";
import { Contact } from "./_components/Contact";
import { Header } from "./_components/Header";
import { Portfolio } from "./_components/Portfolio";
Expand All @@ -8,12 +8,31 @@ export default function Home() {
return (
<>
<Header />
<main className='flex flex-col items-center justify-center'>
<main>
<About />
<Portfolio />
<Services />
<Contact />
</main>
</>
);
} */

import Image from "next/image";
import { Settings } from "lucide-react";
import { Separator } from "@/components/ui/separator";

export default function InDevelopment() {
return (
<main className="flex min-h-screen items-center justify-center">
<div className="flex flex-col items-center gap-4">
<Image alt="Logo" src="/inovejr-logo.png" width={100} height={100} />
<Separator className="bg-black" />
<div className="flex gap-2">
<Settings className="size-7 animate-spin stroke-[1.4]" />
<span className="font-primary text-3xl">Em Desenvolvimento</span>
</div>
</div>
</main>
);
}
6 changes: 3 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "@/styles/globals.css";
import type { Metadata } from "next";
import { Footer } from "@/components/layout/Footer";
//import { Footer } from "@/components/layout/Footer";

import favicon from "public/favicon.ico";
import faviconDark from "public/favicon-dark.ico";
Expand Down Expand Up @@ -31,10 +31,10 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang='pt-br'>
<html lang="pt-br">
<body className={`${prime.variable} ${kanit.variable}`}>
{children}
<Footer />
{/* <Footer /> */}
</body>
</html>
);
Expand Down

0 comments on commit dd293fa

Please sign in to comment.