A modern, high-performance website for SoftlaneIT.
The website's content (Blogs, Services, Projects, Careers, Testimonials) is stored in the src/content directory as Markdown (.md) files.
- Go to
src/content/blog/. - Create a new file, e.g.,
my-new-post.md. - Add the frontmatter at the top:
--- title: The Future of AI excerpt: A brief summary for the card view. date: 2024-03-20 author: Jane Doe image: https://images.unsplash.com/... category: Technology slug: the-future-of-ai readTime: 5 min read --- Your blog post content goes here...
- Go to
src/content/projects/. - Create a new
.mdfile. - Frontmatter:
--- title: E-Commerce Platform description: A scalable solution for retail. image: https://images.unsplash.com/... category: Web Development slug: ecommerce-platform client: Retail Corp duration: 3 months technologies: [React, Node.js, AWS] --- Project details...
- Go to
src/content/services/. - Create a new
.mdfile. - Frontmatter:
--- id: cloud-computing icon: Cloud # Matches Lucide icon name title: Cloud Solutions description: We help you migrate to the cloud. features: - Scalability - Security - Cost Efficiency slug: cloud-solutions --- Detailed description...
- Go to
src/content/careers/. - Create a new
.mdfile. - Frontmatter:
--- title: Senior Frontend Engineer department: Engineering location: Remote type: Full-time slug: senior-frontend-engineer --- Job description...
- Go to
src/content/testimonials/. - Create a new
.mdfile. - Frontmatter:
--- id: 1 name: John Smith role: CEO company: Tech Corp avatar: https://images.unsplash.com/... rating: 5 --- "SoftlaneIT is amazing!"
The project is configured for GitHub Pages.
-
Build the project:
npm run build
-
Deploy: Commit and push your changes to the
mainbranch. The GitHub Action (if configured) or manual deployment will handle the rest.To deploy manually to
gh-pages:npm run deploy
(Make sure
homepageinpackage.jsonandbaseinvite.config.tsare set correctly)