Avatar
Favicon
Content
src/app/resources/content.js
import { InlineCode } from "@once-ui-system/core";
import Link from "next/link";
const person = {
...
};
Personal details
src/app/resources/content.js
const person = {
firstName: "Selene",
lastName: "Yu",
get name() {
return "...";
},
role: "Design Engineer",
avatar: "/images/avatar.jpg",
location: "Asia/Jakarta", // Expecting the IANA time zone identifier, e.g., 'Europe/Vienna'
languages: ["English", "Bahasa"], // optional: Leave the array empty if you don't want to display languages
};
Social links
src/app/resources/content.js
const social = [
{
name: "GitHub",
icon: "github",
link: "https://github.com/once-ui-system/nextjs-starter",
},
{
name: "Email",
icon: "email",
link: "mailto:lorant@once-ui.com",
},
];
Pages
src/app/resources/content.js
const home = {
label: "Home",
title: "Selene Yu's Portfolio",
description: "Portfolio website showcasing my work as a Design Engineer",
headline: <>Design engineer and builder</>,
subline: (
<>
I'm Selene, a design engineer at <InlineCode>FLY</InlineCode>, where I craft intuitive
<br /> user experiences. After hours, I build my own projects.
</>
),
};