Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 973c1c5e97 | |||
| 95d9605246 | |||
| 05a79f344f | |||
| 39d95d54bd | |||
| 0976671e62 |
@@ -1,25 +1,18 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { DM_Sans } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Poppins } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const halant = Halant({
|
const dmSans = DM_Sans({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-dm-sans", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const poppins = Poppins({
|
|
||||||
variable: "--font-poppins", subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Berkant Ay - Building RL Environments for AGI", description: "AI researcher and builder based in Berlin. Creating advanced reinforcement learning systems and agentic orchestration solutions.", keywords: "AI, reinforcement learning, AGI, machine learning, research, startup, Berlin", openGraph: {
|
title: "Berkant Ay - Building RL Environments for AGI", description: "AI researcher and builder based in Berlin. Creating advanced reinforcement learning systems and agentic orchestration solutions.", keywords: "AI, reinforcement learning, AGI, machine learning, research, startup, Berlin", openGraph: {
|
||||||
title: "Berkant Ay - Building RL Environments for AGI", description: "AI researcher and builder based in Berlin. Creating advanced reinforcement learning systems and agentic orchestration solutions.", type: "website", siteName: "Berkant Ay", images: [
|
title: "Berkant Ay - Building RL Environments for AGI", description: "AI researcher and builder based in Berlin. Creating advanced reinforcement learning systems and agentic orchestration solutions.", type: "website", siteName: "Berkant Ay", images: [
|
||||||
@@ -46,7 +39,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -15,16 +15,16 @@ import { Mail } from 'lucide-react';
|
|||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="background-highlight"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="pill"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="mediumLarge"
|
||||||
sizing="largeSmallSizeMediumTitles"
|
sizing="largeSizeMediumTitles"
|
||||||
background="noiseDiagonalGradient"
|
background="none"
|
||||||
cardStyle="gradient-radial"
|
cardStyle="glass-depth"
|
||||||
primaryButtonStyle="diagonal-gradient"
|
primaryButtonStyle="primary-glow"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="semibold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
@@ -43,7 +43,7 @@ export default function LandingPage() {
|
|||||||
<HeroCentered
|
<HeroCentered
|
||||||
title="Building RL Environments for AGI"
|
title="Building RL Environments for AGI"
|
||||||
description="AI researcher and builder based in Berlin. Focused on creating advanced reinforcement learning systems and agentic orchestration solutions for the future of artificial intelligence."
|
description="AI researcher and builder based in Berlin. Focused on creating advanced reinforcement learning systems and agentic orchestration solutions for the future of artificial intelligence."
|
||||||
background={{ variant: "downward-rays-static" }}
|
background={{ variant: "downward-rays-animated-grid" }}
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Abz684oacJrzVDdvwfH65dcOrz/a-modern-ai-researcher-at-a-desk-with-mu-1772875967919-9b191597.png", alt: "AI Research"
|
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Abz684oacJrzVDdvwfH65dcOrz/a-modern-ai-researcher-at-a-desk-with-mu-1772875967919-9b191597.png", alt: "AI Research"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-poppins), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-poppins), sans-serif;
|
font-family: var(--font-dm-sans), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #ffffff;
|
--background: #0a0a0a;
|
||||||
--card: #f9f9f9;
|
--card: #1a1a1a;
|
||||||
--foreground: #000f06e6;
|
--foreground: #ffffffe6;
|
||||||
--primary-cta: #0a7039;
|
--primary-cta: #cee7ff;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #f9f9f9;
|
--secondary-cta: #1a1a1a;
|
||||||
--secondary-cta-text: #000f06e6;
|
--secondary-cta-text: #000f06e6;
|
||||||
--accent: #e2e2e2;
|
--accent: #2d30f3;
|
||||||
--background-accent: #c4c4c4;
|
--background-accent: #2d30f3;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user