Skip to content

Commit

Permalink
Merge pull request #3 from code0-tech/landing-page
Browse files Browse the repository at this point in the history
Finished Landing Page
  • Loading branch information
nicosammito authored May 6, 2024
2 parents a7905d8 + f5cca03 commit 1977f35
Show file tree
Hide file tree
Showing 28 changed files with 1,844 additions and 1,261 deletions.
1,788 changes: 969 additions & 819 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@
"lint": "next lint"
},
"dependencies": {
"@code0-tech/pictor": "^0.1.0",
"@code0-tech/pictor": "^0.2.3",
"@tabler/icons-react": "^3.2.0",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18"
"react-dom": "^18",
"sass": "^1.75.0"
},
"devDependencies": {
"@types/node": "^20",
Expand Down
Binary file added public/code0_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/code0_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/code0_software.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion public/next.svg

This file was deleted.

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

This file was deleted.

107 changes: 0 additions & 107 deletions src/app/globals.css

This file was deleted.

28 changes: 28 additions & 0 deletions src/app/globals.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}

html,
body {
max-width: 100vw;
overflow-x: hidden;
background: #030014;
}

ul {
list-style: none;
margin-top: 1rem;

> li {
margin-bottom: 1rem;

&:before {
position: relative;
color: #70ffb2;
margin-right: 1rem;
content: "";
}
}
}
32 changes: 18 additions & 14 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import type {Metadata} from "next";
import {Ubuntu} from "next/font/google";
import "./globals.scss";
import {FooterSection} from "@/static-components/FooterSection";

const inter = Inter({ subsets: ["latin"] });
const ubuntu = Ubuntu({style: "normal", weight: "500", subsets: ["latin"]});

export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Code0 - Revolutionize the backend development",
description: "Revolutionize the backend development",
};

export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
return (
<html lang="en">
<body className={ubuntu.className}>
{children}
<FooterSection/>
</body>
</html>
);
}
Loading

0 comments on commit 1977f35

Please sign in to comment.