Skip to content

Beautiful link-in-bio portfolio with Next.js, Tailwind CSS, and Framer Motion. Dark/light mode, responsive design, YouTube integration.

License

Notifications You must be signed in to change notification settings

nayandas69/linkinbio-nextjs

Repository files navigation

Link in Bio - Modern Portfolio

A stunning, modern link-in-bio portfolio built with Next.js 14, featuring glassmorphism design, smooth animations, and responsive layout. Perfect for content creators, developers, and professionals who want to showcase their social presence and latest content.

Pre-view

Soft Theme Preview Light Theme Preview

Next Js React TypeScript Tailwind CSS

License and Usage

Important

This project is licensed under the MIT License. You are free to use, modify, and distribute this code for personal and commercial purposes.

Caution

Do not remove the author credit comments from the source code files. These credits should remain intact when using or modifying the project.

Usage Terms

  • ✅ Free to use and modify
  • ✅ Commercial use allowed
  • ✅ Distribution allowed
  • ❌ Do not remove author credits from code
  • ❌ Do not claim original authorship

Author

Nayan Das

Features

Modern Design

  • Glassmorphism UI with backdrop blur effects
  • Dark/Light mode toggle with system preference detection
  • Smooth animations powered by Framer Motion
  • Responsive design optimized for all devices
  • Gradient backgrounds with animated elements

Social Integration

  • 6 Social platforms in a single row layout
  • Custom SVG icons with platform-specific colors
  • Hover tooltips with smooth animations
  • Direct links to all your social profiles
  • Accessibility support with proper ARIA labels

Blog Carousel

  • Auto-playing carousel with manual navigation
  • YouTube video integration with modal popup
  • Touch gestures for mobile navigation
  • Category and duration badges
  • Smooth transitions between slides

Performance

  • Next.js 14 with App Router
  • Image optimization with Next.js Image component
  • Font optimization with Google Fonts
  • SEO optimized with proper metadata
  • TypeScript for type safety

Quick Start

Prerequisites

  • Node.js 18.0 or higher
  • npm 8.0 or higher

Installation

  1. Clone the repository

    git clone https://github.com/nayandas69/linkinbio-nextjs.git
    cd linkinbio-nextjs
  2. Install dependencies

    npm install
  3. Add your images Place your images in the public/images/ folder:

    • profile.jpg - Your profile picture
    • favicon.jpg - Website favicon
    • blog1.png, blog2.png, blog3.png - Blog thumbnails
  4. Start development server

    npm run dev
  5. Open your browser Navigate to http://localhost:3000

Tech Stack

Technology Version Purpose
Next.js 14.0+ React framework with App Router
React 18.0+ UI library
TypeScript 5.0+ Type safety
Tailwind CSS 3.3+ Utility-first CSS framework
Framer Motion 10.16+ Animation library
Lucide React 0.294+ Icon library

Customization

Personal Information

Edit app/page.tsx to update:

  • Name and bio text
  • Social media links and URLs
  • Blog post data and YouTube video IDs

Social Links

Update the socialLinks array in app/page.tsx:

const socialLinks = [
  {
    name: "GitHub",
    url: "https://github.com/yourusername",
    icon: GitHubIcon,
    bgColor: "bg-gray-800",
  },
  // Add more platforms...
]

Blog Posts

Update the blogData array with your content:

const blogData = [
  {
    id: 1,
    title: "Your Blog Post Title",
    description: "Your blog post description...",
    videoId: "YouTube_VIDEO_ID",
    thumbnail: "/images/your-thumbnail.png",
    category: "Your Category",
    duration: "10:30",
  },
  // Add more posts...
]

Styling

  • Colors: Modify tailwind.config.ts for custom color schemes
  • Animations: Adjust Framer Motion settings in components
  • Layout: Update responsive breakpoints and spacing

Responsive Design

The application is fully responsive with optimized layouts for:

  • Desktop (1024px+): Full layout with all features
  • Tablet (768px-1023px): Adapted spacing and sizing
  • Mobile (320px-767px): Touch-optimized interface

Dark Mode

Automatic dark mode support with:

  • System preference detection
  • Manual toggle with persistent storage
  • Smooth transitions between themes
  • Optimized colors for both modes

Scripts

Command Description
npm run dev Start development server
npm run build Build for production
npm run start Start production server
npm run lint Run ESLint
npm run type-check Run TypeScript checks

Deployment

Vercel (Recommended)

  1. Push your code to GitHub
  2. Connect your repository to Vercel
  3. Deploy automatically with zero configuration

Other Platforms

  • Netlify: Build command: npm run build, Publish directory: .next
  • Railway: Supports Next.js out of the box
  • DigitalOcean: Use App Platform with Node.js

Performance

  • Lighthouse Score: 95+ across all metrics
  • Core Web Vitals: Optimized for excellent user experience
  • Image Optimization: Automatic WebP/AVIF conversion
  • Code Splitting: Automatic with Next.js App Router

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Acknowledgments

  • Next.js Team for the amazing framework
  • Vercel for hosting and deployment
  • Tailwind CSS for the utility-first approach
  • Framer Motion for smooth animations
  • Lucide for beautiful icons

Star this repository if you found it helpful!

🐛 Found a bug/suggestion? Open an issue

About

Beautiful link-in-bio portfolio with Next.js, Tailwind CSS, and Framer Motion. Dark/light mode, responsive design, YouTube integration.

Topics

Resources

License

Stars

Watchers

Forks