Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finished Landing Page #3

Merged
merged 6 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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