Skip to content

Commit

Permalink
Change inter to open sans
Browse files Browse the repository at this point in the history
  • Loading branch information
rudyorre committed Jan 26, 2025
1 parent b7f641b commit 7aceed2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 16 deletions.
13 changes: 6 additions & 7 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import { Open_Sans } from 'next/font/google'
import './globals.css'

import { ThemeProvider } from '@/components/theme-provider'
import { UserNav } from '@/components/user-nav'
import { Search } from '@/components/search'
import { MainNav } from '@/components/main-nav'
import { BreadCrumb } from '@/components/breadcrumb'

import { Background } from '@/components/background'
import Link from 'next/link'
import { Footer } from '@/components/footer'
import { cn } from '@/lib/utils'

const inter = Inter({ subsets: ['latin'] })
const openSans = Open_Sans({
subsets: ["latin"],
display: "swap",
})

export const metadata: Metadata = {
title: 'Rudy Orre Portfolio',
Expand All @@ -35,7 +34,7 @@ export default function RootLayout({
<meta property="og:image" content="https://rudyorre.com/images/preview.png" />
<meta property="og:url" content="https://rudyorre.com" />
</head>
<body className={inter.className}>
<body className={openSans.className}>
<ThemeProvider
defaultTheme="system"
enableSystem
Expand Down
12 changes: 4 additions & 8 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,18 @@ export default function Home() {
return (
<div className="mx-2">
<Hero />
<div className="text-secondary-foreground/50 mt-20">rudyorre/</div>
<h1 id="Experience" className="scroll-my-24 text-4xl sm:text-5xl md:text-6xl font-bold tracking-tight text-primary mb-10">Experience</h1>
<h1 id="Experience" className="scroll-my-24 text-2xl sm:text-3xl md:text-4xl font-bold tracking-tight text-primary my-10">Experience</h1>
<Experience />
<div className="text-secondary-foreground/50 mt-20">rudyorre/</div>
<h1 id="Projects" className="scroll-my-24 text-4xl sm:text-5xl md:text-6xl font-bold tracking-tight text-primary mb-10">Projects</h1>
<h1 id="Projects" className="scroll-my-24 text-2xl sm:text-3xl md:text-4xl font-bold tracking-tight text-primary my-10">Projects</h1>
<Projects onlyFeatured />
<div className="flex justify-center items-center mt-5">
<Link href="/projects">
<Button>See more</Button>
</Link>
</div>
<div className="text-secondary-foreground/50 mt-20">rudyorre/</div>
<h1 id="Hobbies" className="scroll-my-24 text-4xl sm:text-5xl md:text-6xl font-bold tracking-tight text-primary mb-10">Hobbies</h1>
<h1 id="Hobbies" className="scroll-my-24 text-2xl sm:text-3xl md:text-4xl font-bold tracking-tight text-primary my-10">Hobbies</h1>
<Hobbies />
<div className="text-secondary-foreground/50 mt-20">rudyorre/</div>
<h1 id="Contact" className="scroll-my-24 text-4xl sm:text-5xl md:text-6xl font-bold tracking-tight text-primary mb-10">Contact</h1>
<h1 id="Contact" className="scroll-my-24 text-2xl sm:text-3xl md:text-4xl font-bold tracking-tight text-primary my-10">Contact</h1>
<Contact />
</div>
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Hero = () => (
</h1>
<div className="text-lg">
I build full-stack applications, automate workflows, and
mess around with AI/ML. Also just graduated UCLA.
mess around with AI/ML. Also just graduated UCLA. And stuff like that
</div>
<div className="flex gap-4 mt-4">
<Link href={links.linkedin} target="_blank">
Expand Down

0 comments on commit 7aceed2

Please # to comment.