Skip to content

Commit 1e4c7a2

Browse files
Varun PanugantiVarun Panuganti
authored andcommitted
update: edits to portfolio
1 parent 0f2c1d7 commit 1e4c7a2

File tree

2 files changed

+29
-33
lines changed

2 files changed

+29
-33
lines changed

src/app/layout.tsx

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,27 @@ import type { Metadata } from "next";
22
import { Geist, Geist_Mono } from "next/font/google";
33
import "./globals.css";
44

5-
const geistSans = Geist({
6-
variable: "--font-geist-sans",
7-
subsets: ["latin"],
8-
});
9-
10-
const geistMono = Geist_Mono({
11-
variable: "--font-geist-mono",
12-
subsets: ["latin"],
13-
});
5+
const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"] });
6+
const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"] });
147

158
export const metadata: Metadata = {
16-
title: "Varun Panuganti - Portfolio",
9+
metadataBase: new URL("https://VarunP3000.github.io"),
10+
title: { default: "Varun Panuganti – Portfolio", template: "%s • Varun Panuganti" },
1711
description: "Projects in DS/ML, algorithms, and statistical computing.",
12+
openGraph: {
13+
title: "Varun Panuganti – Portfolio",
14+
description: "Projects in DS/ML, algorithms, and statistical computing.",
15+
url: "/",
16+
siteName: "Varun Panuganti – Portfolio",
17+
images: ["/og.png"], // optional; add /public/og.png if you want previews
18+
},
19+
icons: { icon: "/favicon.ico" }, // optional; add /public/favicon.ico
1820
};
1921

20-
export default function RootLayout({
21-
children,
22-
}: Readonly<{
23-
children: React.ReactNode;
24-
}>) {
22+
export default function RootLayout({ children }: { children: React.ReactNode }) {
2523
return (
2624
<html lang="en">
27-
<body
28-
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
29-
>
25+
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
3026
{children}
3127
</body>
3228
</html>

src/app/page.tsx

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ const PROJECTS: Project[] = [
169169
// INFO 201 — Data Science & Informatics Foundations (R)
170170
{
171171
id: "info201-ps01-basicr",
172-
title: "PS01 — Basic R (variables, logic, strings, loops, functions)",
172+
title: "Basic R (variables, logic, strings, loops, functions)",
173173
year: 2024,
174174
topics: ["Data Science", "R"],
175175
tags: ["R", "tidyverse"],
@@ -180,7 +180,7 @@ const PROJECTS: Project[] = [
180180
},
181181
{
182182
id: "info201-ps02-vectors",
183-
title: "PS02 — Vectors, Vectorization & Lists",
183+
title: "Vectors, Vectorization & Lists",
184184
year: 2024,
185185
topics: ["Data Science", "R"],
186186
tags: ["R"],
@@ -191,7 +191,7 @@ const PROJECTS: Project[] = [
191191
},
192192
{
193193
id: "info201-ps03-rmd",
194-
title: "PS03 — R Markdown, Filesystems & Control Flow",
194+
title: "R Markdown, Filesystems & Control Flow",
195195
year: 2024,
196196
topics: ["Data Science", "R"],
197197
tags: ["R"],
@@ -202,7 +202,7 @@ const PROJECTS: Project[] = [
202202
},
203203
{
204204
id: "info201-ps04-lifeexp-flights",
205-
title: "PS04 — Life Expectancy & NYC Flights",
205+
title: "Life Expectancy & NYC Flights",
206206
year: 2024,
207207
topics: ["Data Science", "R"],
208208
tags: ["R", "tidyverse"],
@@ -213,7 +213,7 @@ const PROJECTS: Project[] = [
213213
},
214214
{
215215
id: "info201-ps05-co2-gapminder",
216-
title: "PS05 — CO2, Gapminder & Fertility vs Life Expectancy",
216+
title: "CO2, Gapminder & Fertility vs Life Expectancy",
217217
year: 2024,
218218
topics: ["Data Science", "R"],
219219
tags: ["R", "tidyverse"],
@@ -224,7 +224,7 @@ const PROJECTS: Project[] = [
224224
},
225225
{
226226
id: "info201-ps06-co2-temp",
227-
title: "PS06 — CO2 vs Temperature (Scripps, HadCRUT, UAH)",
227+
title: "CO2 vs Temperature (Scripps, HadCRUT, UAH)",
228228
year: 2024,
229229
topics: ["Data Science", "R"],
230230
tags: ["R", "tidyverse"],
@@ -235,7 +235,7 @@ const PROJECTS: Project[] = [
235235
},
236236
{
237237
id: "info201-infolab5",
238-
title: "InfoLab5 — Data Frames, Subsetting & Simple Analytics",
238+
title: "Data Frames, Subsetting & Simple Analytics",
239239
year: 2024,
240240
topics: ["Data Science", "R"],
241241
tags: ["R"],
@@ -259,7 +259,7 @@ const PROJECTS: Project[] = [
259259
// STAT/BIOSTAT 534 — Statistical Computing (UW)
260260
{
261261
id: "s534-hw1-bayes-lm",
262-
title: "HW1 — Bayesian Linear Models: Log‑Determinant & Marginal Likelihood",
262+
title: "Bayesian Linear Models: Log‑Determinant & Marginal Likelihood",
263263
year: 2025,
264264
topics: ["Statistical Computing"],
265265
tags: ["R", "Statistical Computing"],
@@ -270,7 +270,7 @@ const PROJECTS: Project[] = [
270270
},
271271
{
272272
id: "s534-hw2-greedy-logistic",
273-
title: "HW2 — Greedy Variable Selection for Logistic Regression",
273+
title: "Greedy Variable Selection for Logistic Regression",
274274
year: 2025,
275275
topics: ["Statistical Computing"],
276276
tags: ["R", "Statistical Computing"],
@@ -281,7 +281,7 @@ const PROJECTS: Project[] = [
281281
},
282282
{
283283
id: "s534-hw3-mc3",
284-
title: "HW3 — Stochastic Model Selection via MC3",
284+
title: "Stochastic Model Selection via MC3",
285285
year: 2025,
286286
topics: ["Statistical Computing"],
287287
tags: ["R", "Statistical Computing", "Bayesian Methods"],
@@ -292,7 +292,7 @@ const PROJECTS: Project[] = [
292292
},
293293
{
294294
id: "s534-hw4-laplace-mh",
295-
title: "HW4 — Bayesian Univariate Logistic Regression (Laplace + MH)",
295+
title: "Bayesian Univariate Logistic Regression (Laplace + MH)",
296296
year: 2025,
297297
topics: ["Statistical Computing"],
298298
tags: ["R", "Statistical Computing", "Bayesian Methods", "Parallel Computing"],
@@ -303,7 +303,7 @@ const PROJECTS: Project[] = [
303303
},
304304
{
305305
id: "s534-hw5-marglik-cpp",
306-
title: "HW5 — Marginal Likelihood for Linear Regression (C/C++: LAPACK & GSL)",
306+
title: "Marginal Likelihood for Linear Regression (C/C++: LAPACK & GSL)",
307307
year: 2025,
308308
topics: ["Statistical Computing", "Systems"],
309309
tags: ["C/C++", "LAPACK", "GSL", "Statistical Computing", "Makefiles", "Performance Optimization"],
@@ -314,7 +314,7 @@ const PROJECTS: Project[] = [
314314
},
315315
{
316316
id: "s534-hw6-rec-det-topk",
317-
title: "HW6 — Recursive Determinant & Top‑K Regression Search",
317+
title: "Recursive Determinant & Top‑K Regression Search",
318318
year: 2025,
319319
topics: ["Statistical Computing"],
320320
tags: ["C/C++", "LAPACK", "Algorithms", "Statistical Computing"],
@@ -325,7 +325,7 @@ const PROJECTS: Project[] = [
325325
},
326326
{
327327
id: "s534-hw7-mvn-cov",
328-
title: "HW7 — Multivariate Normal Sampling & Covariance Estimation",
328+
title: "Multivariate Normal Sampling & Covariance Estimation",
329329
year: 2025,
330330
topics: ["Statistical Computing"],
331331
tags: ["C/C++", "GSL", "Statistical Computing"],
@@ -336,7 +336,7 @@ const PROJECTS: Project[] = [
336336
},
337337
{
338338
id: "s534-final-mpi-volleyball",
339-
title: "Final — MPI Volleyball Match Simulator",
339+
title: "MPI Volleyball Match Simulator",
340340
year: 2025,
341341
topics: ["Systems", "Parallel"],
342342
tags: ["C/C++, MPI", "Parallel Computing"],

0 commit comments

Comments
 (0)