|
| 1 | +# Personal Landing Page |
| 2 | + |
| 3 | +A modern, customizable landing page template for showcasing your personal brand, projects, and contact information. |
| 4 | + |
| 5 | +## Quick Start |
| 6 | + |
| 7 | +1. **Clone the repository** |
| 8 | + |
| 9 | + ```bash |
| 10 | + git clone <repository-url> |
| 11 | + cd PersonalLanding |
| 12 | + ``` |
| 13 | + |
| 14 | +2. **Install dependencies** |
| 15 | + |
| 16 | + ```bash |
| 17 | + npm install |
| 18 | + ``` |
| 19 | + |
| 20 | +3. **Run the development server** |
| 21 | + |
| 22 | + ```bash |
| 23 | + npm run dev |
| 24 | + ``` |
| 25 | + |
| 26 | +4. **Build for production** |
| 27 | + ```bash |
| 28 | + npm run build |
| 29 | + ``` |
| 30 | + |
| 31 | +## Configuration |
| 32 | + |
| 33 | +The landing page is fully customizable through the [config.json](config.json) file. Edit this file to personalize your site without touching any code. |
| 34 | + |
| 35 | +### Structure |
| 36 | + |
| 37 | +```json |
| 38 | +{ |
| 39 | + "domain": "Your site URL", |
| 40 | + "siteSettings": { |
| 41 | + "siteName": "Your site name", |
| 42 | + "siteDescription": "Your site description", |
| 43 | + "metaColor": "#4A90E2" |
| 44 | + }, |
| 45 | + "footerSettings": { |
| 46 | + "enabled": true, |
| 47 | + "text": "Your footer text" |
| 48 | + }, |
| 49 | + "sections": [...] |
| 50 | +} |
| 51 | +``` |
| 52 | + |
| 53 | +### Available Sections |
| 54 | + |
| 55 | +Each section in the `sections` array can be toggled on/off and customized: |
| 56 | + |
| 57 | +- **Hero** - Main landing section (variants: `centered`, `split`, `minimal`, `bold`, `card`, `links`) |
| 58 | +- **About** - About me section with skills (variants: `centered`, `split`, `card`, `minimal`) |
| 59 | +- **Stats** - Display statistics or achievements |
| 60 | +- **Services** - Showcase your services or offerings |
| 61 | +- **Projects** - Featured projects with tags and links |
| 62 | +- **Timeline** - Experience or education timeline |
| 63 | +- **Gallery** - Image gallery (variants: `grid`, `masonry`, `lightbox`, `carousel`) |
| 64 | +- **Testimonials** - Client or colleague testimonials |
| 65 | +- **FAQ** - Frequently asked questions |
| 66 | +- **Links** - Social media and contact links (variants: `default`, `grid`, `card`, `minimal`) |
| 67 | +- **Contact** - Contact form and email button |
| 68 | + |
| 69 | +### Quick Tips |
| 70 | + |
| 71 | +- Set `"enabled": false` to hide any section |
| 72 | +- Multiple sections of the same type can be used with different variants |
| 73 | +- Images should be placed in the `static/img/` directory |
| 74 | +- Use markdown in footer text (e.g., `[link text](url)`) |
| 75 | + |
| 76 | +## Documentation |
| 77 | + |
| 78 | +For detailed setup instructions, customization options, and deployment guides, visit our comprehensive documentation: |
| 79 | + |
| 80 | +**[https://docs.shadowdevs.com/personalLanding](https://docs.shadowdevs.com/personalLanding)** |
| 81 | + |
| 82 | +## About |
| 83 | + |
| 84 | +Created by [Shadow Development](https://shadowdevs.com/) |
| 85 | + |
| 86 | +--- |
| 87 | + |
| 88 | +For issues, questions, or contributions, please refer to the documentation or contact Shadow Development. |
0 commit comments