diff --git a/packages/preview/metronic/1.0.0/LICENSE b/packages/preview/metronic/1.0.0/LICENSE new file mode 100644 index 0000000000..aba6cee8e4 --- /dev/null +++ b/packages/preview/metronic/1.0.0/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 Patrick R + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/packages/preview/metronic/1.0.0/README.md b/packages/preview/metronic/1.0.0/README.md new file mode 100644 index 0000000000..80c42fc43e --- /dev/null +++ b/packages/preview/metronic/1.0.0/README.md @@ -0,0 +1,174 @@ +# Metronic Resume Template + +A Typst template for a slick and professional looking resume. +Check out the [full example](./template/main.typ) to create your first resume. + +![](thumbnail.png) + +## Getting started + +Start by importing the template into your Typst project: + +```typst +#import "@preview/metronic:1.0.0": * +``` + +You can now call the `resume-page` function to generate a resume page: + +```typst +#import "@preview/metronic:1.0.0": * + +#show: resume-page.with( + sidebar: [ + = Jane Doe + + #medium("Business Development Manager") + + #v(5pt) + + Strategic business leader with proven expertise in market expansion and revenue growth. + + Skilled in building partnerships, developing client relationships, and driving organizational success through innovative solutions. + + Passionate about sustainable business practices and team development. + + #v(5pt) + + #contact( + phone: "555-0123", + linkedin: "janedoe", + email: "jane.doe@email.com", + location: "Chicago, USA" + ) + ] +) + +// The body of your resume goes here +``` + +For the body, a `#section` component is available to add sections with icons. eg: + +```typst +#section(icon: "briefcase", "Professional Experience")[ + === Business Development Director + Global Solutions Inc. - 2023-Present + + Leading strategic growth initiatives and managing key client relationships across multiple regions. + Focus on developing new market opportunities and enhancing existing partnerships. +] +``` + +## Fonts + +This template uses FontAwesome icons. For icons to work properly, please include the ttf files into your project directory. + +You can download them here: [FontAwesome](https://fontawesome.com/v6/download) + +## Multi-page resume + +This template supports multi-page resumes. To achieve this, you simply need to make multiple calls to the `resume-page` function. + +For this to work, you will need to avoid using the `#show` directive (which wraps the entire body of the document). + +Here's an example of a multi-page resume: + +```typst +#import "@preview/metronic:1.0.0": * + +#resume-page( + sidebar: [ + == Sidebar content + ] +])[ + == First Page Content +] + +// We render the second page without a sidebar +#resume-page()[ + == Second Page Content +] + +#resume-page()[ + == Third Page Content +] +``` + +## Theming + +The template supports selection of 2 main colors: + +- `accent-color` +- `background-color` + +You can set that by calling the `#theme` function at the top of your document: + +Note: text color is automatically detected based on those colors. + +```typst +#import "@preview/metronic:1.0.0": * + +#theme( + accent-color: rgb("61B7AE"), + background-color: rgb("F2F0EF"), +) + +#show: resume-page.with( + sidebar: [ + // content + ] +) + +// content +``` + +## Usefule components + +### `#section` + +The `#section` component is used to add sections with icons. It takes 2 arguments: + +- `icon`: the icon to display +- `title`: the title of the section + +```typst +#section(icon: "briefcase", "Professional Experience")[ + === Business Development Director + Global Solutions Inc. - 2023-Present + + Leading strategic growth initiatives and managing key client relationships across multiple regions. + Focus on developing new market opportunities and enhancing existing partnerships. +] +``` + +### `#contact` + +The `#contact` component is used to display contact information. It takes 5 optional arguments: + +- `phone`: the phone number +- `linkedin`: the linkedin username +- `email`: the email address +- `location`: the location +- `github`: the github username + +```typst +#contact( + phone: "555-0123", + linkedin: "janedoe", + email: "jane.doe@email.com", + location: "Chicago, USA" +) +``` + +### `#tags` + +The `#tags` component is used to display a list of tags. We use these for listing skills. + +```typst + #tags( + "Strategic Planning", + "Team Leadership", + "Market Analysis", + "Client Relations", + "Revenue Growth" + ) +``` diff --git a/packages/preview/metronic/1.0.0/template.typ b/packages/preview/metronic/1.0.0/template.typ new file mode 100644 index 0000000000..3c76f34d88 --- /dev/null +++ b/packages/preview/metronic/1.0.0/template.typ @@ -0,0 +1,208 @@ +#import "@preview/fontawesome:0.5.0": * + +// -------------------------------------- +// Theme +// -------------------------------------- + +#let current-background-color = state("current-background-color", rgb("ffffff")) + +#let theme-state = state("theme", ( + accent-color: rgb("61B7AE"), + background-color: rgb("F2F0EF"), +)) + +#let get-background-color() = { + theme-state.at(here()).background-color +} + +#let get-accent-color() = { + theme-state.at(here()).accent-color +} + +#let get-current-background-color() = { + current-background-color.at(here()) +} + +#let set-current-background-color(col) = { + current-background-color.update(c => col) +} + +#let theme( + accent-color: none, + background-color: none, +) = { + let config = (:) // empty dictionary + if accent-color != none { + config.insert("accent-color", accent-color) + } + if background-color != none { + config.insert("background-color", background-color) + } + theme-state.update(it => it + config) +} + +// -------------------------------------- +// Config +// -------------------------------------- + +#show heading.where(level: 1): set text(size: 22pt, weight: "bold") +#show heading.where(level: 2): set text(size: 14pt, weight: "bold") + +#let empty = "" +#let name = "Patrick Rabier" +#let role = "Lead Software Engineer" +#let font = "Inter" + +// -------------------------------------- +// Helpers +// -------------------------------------- + +// White text on darker background, black on light ones (with bias) +#let detect-text-color = (bg-color) => { + let rgb = bg-color.rgb() + let r = rgb.components().at(1) + let g = rgb.components().at(1) + let b = rgb.components().at(2) + + let total = r + g + b + if total > 220% { + black + } else { + white + } +} + +// Creates a bullet item +#let tag(content) = [ + #context [ + #box( + fill: get-accent-color().lighten(50%), + inset: (x: 8pt, y: 4pt), + radius: 4pt, + text( + size: 10pt, + fill: rgb(get-accent-color()).darken(40%), + weight: "medium" + )[#content] + ) + #h(1pt) + ] +] + +// A group of tags +#let tags(..items) = { + box( + width: 100%, clip: true, + { + for item in items.pos() { + tag(item) + h(4pt) // Add horizontal spacing between tags + } + } + ) +} + +#let small(content) = { + text(size: 10pt)[#content] +} + +#let medium(content) = { + text(size: 14pt, weight: "bold")[#content] +} + +#let large(content) = { + text(size: 18pt, weight: "bold")[#content] +} + +#let section( + icon: "", + name, + color: none, + content +) = { + context { + let title = [== #fa-icon(icon) #h(8pt) #name] + + let c = if color != none { + color + } else { + detect-text-color(get-current-background-color()) + } + + text(fill: c)[== #fa-icon(icon) #h(8pt) #name] + pad(y: 15pt)[#content] + } +} + +#let resume-layout = ( + sidebar: none, + color: gray, + base-color: white, + content +) => { + if sidebar == none { + pad(20pt, content) + } else { + grid( + columns: (1.9fr, 3fr), + rows: (100%), + fill: (x, _) => if x == 0 { color } else { base-color }, + context { + set-current-background-color(color) + sidebar + }, + context { + set-current-background-color(base-color) + content + }, + ) + } +} + +#let contact = (phone: "", github: "", location: "", email: "", linkedin: "") => { + if email != "" [ + #fa-envelope(solid: true) #h(5pt) #email \ + ] + if phone != "" [ + #fa-phone(solid: true) #h(5pt) #phone \ + ] + if github != "" [ + #fa-github(solid: true) #h(5pt) #github \ + ] + if linkedin != "" [ + #fa-linkedin(solid: true) #h(5pt) #linkedin \ + ] + if location != "" [ + #fa-location-dot(solid: true) #h(5pt) #location \ + ] +} + +#let render-area(text-fill, content) = { + pad(y: 20pt, left: 20pt, right: 14pt, [ + #set text( + font: font, + fill: text-fill, + size: 12pt + ) + #content + ]) +} + +#let resume-page = ( + sidebar: none, + main +) => { + context { + set page("a4", margin: 0pt, fill: get-background-color()) + resume-layout( + base-color: get-background-color(), + color: get-accent-color(), + sidebar: if sidebar != none { + render-area(detect-text-color(get-accent-color()), sidebar) + } else { + none + }, + render-area(detect-text-color(get-background-color()), main) + ) + } +} diff --git a/packages/preview/metronic/1.0.0/template/main.typ b/packages/preview/metronic/1.0.0/template/main.typ new file mode 100644 index 0000000000..b70d385ffd --- /dev/null +++ b/packages/preview/metronic/1.0.0/template/main.typ @@ -0,0 +1,128 @@ +#import "@preview/metronic:1.0.0": * + +#theme( + accent-color: rgb("61B7AE"), + background-color: rgb("F2F0EF"), +) + +#show: resume-page.with( + sidebar: [ + = Jane Doe + + #medium("Business Development Manager") + + #v(5pt) + + Strategic business leader with proven expertise in market expansion and revenue growth. + + Skilled in building partnerships, developing client relationships, and driving organizational success through innovative solutions. + + Passionate about sustainable business practices and team development. + + #v(5pt) + + #contact( + phone: "555-0123", + linkedin: "janedoe", + email: "jane.doe@email.com", + location: "Chicago, USA" + ) + + #v(5pt) + + #section(icon: "university", "Education")[ + #small()[ + MBA, Business Administration \ + Business School (2015-2017) + + BA, International Relations \ + State University (2010-2014) + ] + ] + + #section(icon: "check-double", "Skills")[ + === Core Competencies + + #v(5pt) + + #tags( + "Strategy", + "Leadership", + "Negotiations", + "Market Analysis", + "Client Relations", + "Public Speaking", + "Business Development", + "MS Word", + "Data analytics" + ) + + === Industries + + #v(5pt) + + #tags( + "Retail", + "Finance", + "Consulting", + "Healthcare", + "Technology", + "Education", + "Real Estate", + "Marketing", + "Operations", + "Sales", + "Human Resources", + "Digital" + ) + ] + ] +) + +#section(icon: "briefcase", "Professional Experience")[ + === Business Development Director + Global Solutions Inc. - 2023-Present + + Leading strategic growth initiatives and managing key client relationships across multiple regions. + Focus on developing new market opportunities and enhancing existing partnerships. + + Key Achievements: + - Increased regional revenue by 45% through strategic partnerships + - Led team of 12 business development managers + - Launched successful market entry in 3 new territories + - Developed and implemented client retention program + - Streamlined operational processes + - Mentored junior team members + + #tags( + "Strategic Planning", + "Team Leadership", + "Market Analysis", + "Client Relations", + "Revenue Growth" + ) + + #v(10pt) + + === Senior Business Manager + Innovation Partners - 2020-2023 + + Managed portfolio of key accounts while developing and executing business growth strategies. + Led cross-functional teams in implementing innovative solutions for clients. + + Notable Achievements: + + - Successfully managed \$20M client portfolio + - Developed new business vertical generating 30% growth + - Led organizational change management initiatives + - Established strategic partnerships with industry leaders + - Implemented customer success program + + #tags( + "Account Management", + "Business Strategy", + "Change Management", + "Client Relations", + "Revenue Growth" + ) +] diff --git a/packages/preview/metronic/1.0.0/thumbnail.png b/packages/preview/metronic/1.0.0/thumbnail.png new file mode 100644 index 0000000000..9f737cc008 Binary files /dev/null and b/packages/preview/metronic/1.0.0/thumbnail.png differ diff --git a/packages/preview/metronic/1.0.0/typst.toml b/packages/preview/metronic/1.0.0/typst.toml new file mode 100644 index 0000000000..0f50b1e1a2 --- /dev/null +++ b/packages/preview/metronic/1.0.0/typst.toml @@ -0,0 +1,16 @@ +[package] +name = "metronic" +version = "1.0.0" +entrypoint = "template.typ" +authors = ["Patrick Rabier "] +license = "MIT" +description = "A clean, colorful, and modern CV template." +repository = "https://github.com/patrixr/metronic-cv" +categories = ["cv"] +keywords = ["CV", "Resume", "Color", "Sidebar"] +exclude = ["*.pdf"] + +[template] +path = "template" +entrypoint = "main.typ" +thumbnail = "thumbnail.png"