Skip to content

Commit

Permalink
Pagina em construção
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoom1 committed Jan 29, 2025
1 parent 5a9dcb2 commit 5d9d3eb
Show file tree
Hide file tree
Showing 47 changed files with 49 additions and 2,377 deletions.
1 change: 0 additions & 1 deletion nextjs/public/next.svg

This file was deleted.

1 change: 0 additions & 1 deletion nextjs/public/vercel.svg

This file was deleted.

57 changes: 0 additions & 57 deletions nextjs/src/app/__App.js

This file was deleted.

Binary file removed nextjs/src/app/assets/about.png
Binary file not shown.
Binary file removed nextjs/src/app/assets/home-bg.jpg
Binary file not shown.
Binary file removed nextjs/src/app/assets/home-main.png
Binary file not shown.
9 changes: 0 additions & 9 deletions nextjs/src/app/assets/home-main.svg

This file was deleted.

47 changes: 0 additions & 47 deletions nextjs/src/app/assets/pre.svg

This file was deleted.

Binary file removed nextjs/src/app/assets/projects/kickstart.png
Binary file not shown.
Binary file removed nextjs/src/app/assets/projects/krypto.png
Binary file not shown.
Binary file removed nextjs/src/app/assets/projects/lift.png
Binary file not shown.
Binary file removed nextjs/src/app/assets/projects/pg.png
Binary file not shown.
Binary file removed nextjs/src/app/assets/projects/project.jpeg
Binary file not shown.
Binary file removed nextjs/src/app/assets/s.png
Binary file not shown.
Binary file removed nextjs/src/app/assets/sLogo.png
Binary file not shown.
Binary file removed nextjs/src/app/assets/sajib.pdf
Binary file not shown.
Binary file removed nextjs/src/app/favicon.ico
Binary file not shown.
4 changes: 4 additions & 0 deletions nextjs/src/app/global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
body, root {
margin: 0px;
padding: 0px;
}
Empty file removed nextjs/src/app/globals.css
Empty file.
30 changes: 11 additions & 19 deletions nextjs/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,35 +1,27 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";

import Preloader from "./../components/PreLoader"
import ScrollToTop from "./../components/ScrollToTop"
import Navbar from "./../components/Navbar/Navbar";

import "bootstrap/dist/css/bootstrap.min.css";
import "./style.css";



const inter = Inter({ subsets: ["latin"] });
import { Roboto } from "next/font/google";

export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};

import './global.css';

const roboto = Roboto({
weight: '300',
subsets: ['latin']
});

export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={inter.className}>
<Preloader load={ false } />
<div className="App" id={false ? "no-scroll" : "scroll"}>
<Navbar />
<ScrollToTop />
<html lang="pt_BR">
<body className={ roboto.className }>
<div className="App">
{children}
</div>
</body>
Expand Down
230 changes: 0 additions & 230 deletions nextjs/src/app/page.module.css

This file was deleted.

Loading

0 comments on commit 5d9d3eb

Please sign in to comment.