🚀 release: v3.0.0

This commit is contained in:
Amruth Pillai
2022-03-02 17:44:11 +01:00
parent 2175256310
commit 295172687b
352 changed files with 30932 additions and 0 deletions

View File

@ -0,0 +1,31 @@
type Screenshot = {
src: string;
alt: string;
};
export const screenshots: Screenshot[] = [
{
src: '/images/screenshots/dashboard.png',
alt: 'Create multiple resumes under one account',
},
{
src: '/images/screenshots/import-external.png',
alt: 'Import your data from LinkedIn, JSON Resume or Reactive Resume',
},
{
src: '/images/screenshots/builder.png',
alt: 'Variety of features to personalize your resume to your liking',
},
{
src: '/images/screenshots/add-section.png',
alt: 'Multiple pre-built sections which can be renamed, or just create your own section',
},
{
src: '/images/screenshots/page-layout.png',
alt: 'Create multiple pages, manage section layouts as easy as dragging them around',
},
{
src: '/images/screenshots/preview.png',
alt: 'Get a unique link to your resume which can be shared with anyone for the latest information',
},
];