Skip to content

Commit

Permalink
v3 ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
itsrn committed Mar 11, 2024
1 parent 0012e42 commit 10646b7
Show file tree
Hide file tree
Showing 15 changed files with 410 additions and 253 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# My website
This is my simple and clean website. Created with Nextjs, TailwindCSS and TypeScript.
This is my simple and clean website. Created with Next.js, TailwindCSS and TypeScript.

## Getting Started
Fork the repo (or download it), then go to the project's directory and run:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

Binary file removed app/Font.ttf
Binary file not shown.
24 changes: 0 additions & 24 deletions app/components/AnimatedBadge.tsx

This file was deleted.

28 changes: 0 additions & 28 deletions app/components/ButtonGradient.tsx

This file was deleted.

12 changes: 0 additions & 12 deletions app/components/Footer.tsx

This file was deleted.

39 changes: 0 additions & 39 deletions app/components/Socials.tsx

This file was deleted.

16 changes: 10 additions & 6 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import "./globals.css";
import type { Metadata } from "next";
import localFonts from "next/font/local";
import { Playfair_Display } from "next/font/google";

export const metadata: Metadata = {
title: "Ron Nuss",
description: "I'm Ron, 16 years old, full-stack developer.",
description: "I'm Ron, a Back-End Developer that turns ideas into projects.",
icons: ["https://avatars.githubusercontent.com/u/132187043?v=4"],
};

const websiteFont = localFonts({
src: "./Font.ttf",
const playfairDisplay = Playfair_Display({
subsets: ["latin"],
});

export default function RootLayout({
Expand All @@ -19,8 +19,12 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={"min-h-screen bg-neutral-950 overflow-x-hidden " + websiteFont.className}>
<div className="absolute top-0 z-[-2] min-h-screen w-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(120,119,198,0.3),rgba(255,255,255,0))]"></div>
<body
className={
"min-h-screen fixed bg-[#F0F2AE] text-[#0D0D0D] " +
playfairDisplay.className
}
>
{children}
</body>
</html>
Expand Down
Loading

0 comments on commit 10646b7

Please sign in to comment.