···11-# Vantage Typst
22-33-An ATS friendly simple Typst CV template, inspired by [alta-typst by George Honeywood](https://github.com/GeorgeHoneywood/alta-typst). See [`example.pdf`](example.pdf) for the rendered PDF output.
44-55-
66-77-## Features
88-99-- **Two-column layout**: Experience on the left and other important details on the right, organized for easy scanning.
1010-- **Customizable icons**: Add and replace icons to suit your personal style.
1111-- **Responsive design**: Adjusts well for various print formats.
1212-1313-## Usage
1414-1515-### Running Locally with Typst CLI
1616-1717-1. **Install Typst CLI**: Follow the installation instructions on the [Typst CLI GitHub page](https://github.com/typst/typst#installation) to set up Typst on your machine.
1818-1919-2. **Clone the repository**:
2020-2121- ```bash
2222- git clone https://github.com/sardorml/vantage-typst.git
2323- cd vantage-typst
2424- ```
2525-2626-3. **Run Typst**:
2727-2828- Use the following command to render your CV:
2929-3030- ```bash
3131- typst compile example.typ
3232- ```
3333-3434- This will generate a PDF output in the same directory.
3535-3636-4. **Edit your CV**:
3737-3838- Open the `example.typ` file in your preferred text editor to customize the layout.
3939-4040-### Configuration
4141-4242-You can easily customize your personal data by editing the `configuration.yaml` file. This file allows you to set your name, contact information, work experience, education, and skills. Here’s how to do it:
4343-4444-1. Open the `configuration.yaml` file in your text editor.
4545-2. Update the fields with your personal information.
4646-3. Save the file, and your CV will automatically reflect these changes when you compile it.
4747-4848-## Icons
4949-5050-You can enhance your CV with additional icons by following these steps:
5151-5252-1. **Upload Icons**: Place your `.svg` files in the `icons/` folder.
5353-5454-2. **Reference Icons**: Modify the `links` array in the Typst file to include your new icons by referencing their filenames as the `name` values.
5555-5656- Example:
5757-5858- ```typst
5959- links: [
6060- { name: "your-icon-name", url: "https://example.com" },
6161- ]
6262- ```
11+# CV
6326464-For existing icons, the current selection is sourced from [Lucide Icons](https://lucide.dev/icons/).
33+My personal CV built with Typst.
6546666-## License
55+## Build
6766868-This project is licensed under the [MIT License](./LICENSE).
77+```bash
88+typst compile cv_tymek_chmielecki.typ && open cv_tymek_chmielecki.pdf
99+```
69107070-Icons are from Lucide Icons and are subject to [their terms](https://lucide.dev/license).
1111+## Configuration
71127272-## Acknowledgments
1313+Edit `configuration.yaml` to update personal info, experience, projects, etc.
73147474-- Inspired by the work of [George Honeywood](https://github.com/GeorgeHoneywood/alta-typst).
7575-- Thanks to [Lucide Icons](https://lucide.dev/icons/) for providing the icon library.
1515+## Template
76167777-For any questions or contributions, feel free to open an issue or submit a pull request!
1717+Based on [vantage-typst](https://github.com/sardorml/vantage-typst).