Skip to content

priyanshub18/portfolio

Repository files navigation

Personal Portfolio Website

Portfolio Preview

A modern, interactive portfolio website built with Next.js, Tailwind CSS, and 3D models. This portfolio showcases projects, personal interests, and contact information with elegant animations and interactive elements.

🚀 Features

  • Modern Stack: Built with Next.js 14 (App Router) and Tailwind CSS
  • Responsive Design: Looks great on all devices
  • 3D Models: Interactive 3D elements using Three.js
  • Smooth Animations: Beautiful transitions and animations using Framer Motion
  • Fast Performance: Optimized for speed and SEO
  • Interactive UI: Engaging user experience

📋 Sections

  1. Hero Section: Captivating introduction with 3D elements
  2. Projects Gallery: Showcase of professional work with filters
  3. Personal Interests: Hobbies and personal activities with interactive elements
  4. Contact Form: Easy-to-use form with validation
  5. Footer: Social links and additional navigation

🛠️ Tech Stack

🚀 Getting Started

Prerequisites

  • Node.js 18.x or later
  • npm or yarn

Installation

  1. Clone the repository:

    git clone https://github.com/priyanshub18/portfolio-website.git
    cd portfolio-website
  2. Install dependencies:

    npm install
    # or
    yarn install
  3. Run the development server:

    npm run dev
    # or
    yarn dev
  4. Open http://localhost:3000 in your browser.

📂 Project Structure

 ├── /src
        ├── /app
        │   ├── layout.js           # Root layout
        │   ├── page.js             # Home page
        │   └── globals.css         # Global styles
        ├── components/
        │   ├── Card/               #All the Cards
        │   ├── HeaderStyle/             #All the header styling
        │   ├── Orbit/              # Concentric Orbit
        │   └── TechIcon/
        ├── assets/
        │   ├── icons/             # 3D model files
        │   └── images/             # Static images
        ├── sections/
        │   ├── About/               # Cards showcasing personal details and skills.
        │   ├── Contact/             # Header styling and contact form.
        │   ├── Footer/              # Footer with concentric orbit design and links.
        │   ├── Header/              # Navigation and top section styling.
        │   ├── Hero/                # Hero section with heading and CTA.
        │   ├── Projects/            # Project showcase with links and descriptions.
        │   └── Tape/                # Section for media or work samples.
├── styles/                 # Additional styles
├── lib/                    # Utility functions
├── next.config.js          # Next.js configuration
├── tailwind.config.js      # Tailwind configuration
└── package.json            # Dependencies

🎨 Customization

Styling

The project uses Tailwind CSS for styling. You can customize the design by modifying the tailwind.config.js file:

module.exports = {
  theme: {
    extend: {
      colors: {
        primary: '#0070f3',
        secondary: '#ff0080',
        // Add your custom colors
      },
      fontFamily: {
        sans: ['Inter', 'sans-serif'],
        // Add your custom fonts
      },
      // Add other customizations
    },
  },
  plugins: [],
};


## 🚀 Deployment

The project can be easily deployed on Vercel:

1. Push your code to a GitHub repository
2. Import the project in Vercel
3. Deploy with a single click

Alternatively, build and export the project for other hosting solutions:

```bash
npm run build
# Output will be in the .next directory

📱 Responsive Design

The website is fully responsive across all devices. The design adapts to different screen sizes using Tailwind's responsive utilities:

<div className='grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6'>
  {/* Content */}
</div>

🎮 Interactive Elements

The portfolio includes various interactive elements:

  • Hover effects on project cards
  • Animated page transitions
  • Interactive 3D models that respond to user input
  • Parallax scrolling effects
  • Custom cursor animations

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Acknowledgments

About

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published