Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
107 changes: 107 additions & 0 deletions Templates/Liquid/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
# Liquid Theme

A modern, Apple-inspired LinkFree theme featuring liquid animations, glassmorphism effects, and smooth interactions based on Apple's latest design trends.

![Preview](preview.png)

## Demo
https://michaelbarney.github.io/LinkFree/Templates/Liquid/

## Features

- 🎨 **Apple-Inspired Design**: Clean, modern aesthetic following Apple's design language
- πŸ’§ **Liquid Animations**: Smooth, floating gradient orbs that create a dynamic background
- 🌈 **Glassmorphism Effects**: Frosted glass-like cards with backdrop blur
- πŸŒ“ **Dark Mode Support**: Automatically adapts to system preferences
- πŸ“± **Fully Responsive**: Optimized for all screen sizes
- β™Ώ **Accessible**: Includes focus states and reduced motion support
- ⚑ **Smooth Animations**: Beautiful transitions and hover effects

## How to Use

### index.html

1. **Title**
Change the page title:
```html
<title>Your Name - Links</title>
```

2. **Profile Image**
Replace the image URL with your photo:
```html
<img src="YOUR_IMAGE_URL" alt="Profile Photo" class="profile-image">
```

3. **Name and Bio**
Update your name and bio:
```html
<h1 class="profile-name">Your Name</h1>
<p class="profile-bio">Your Title β€’ Your Role β€’ Your Passion</p>
```

4. **Links**
Customize your links by editing or adding link cards:
```html
<a href="YOUR_LINK_URL" class="link-card" target="_blank">
<span class="link-icon">🌐</span>
<span class="link-text">Link Title</span>
<span class="link-arrow">β†’</span>
</a>
```

You can use any emoji for the icon, or replace it with an icon library like Font Awesome.

### style.css

5. **Color Customization**
Adjust the gradient colors in the CSS variables:
```css
:root {
--primary-gradient-start: #007AFF;
--primary-gradient-end: #5856D6;
--secondary-gradient-start: #FF2D55;
--secondary-gradient-end: #FF9500;
--tertiary-gradient-start: #30D158;
--tertiary-gradient-end: #00C7BE;
}
```

6. **Font Customization**
The theme uses Inter font by default. You can change it:
```css
--font-family: 'Your Font', -apple-system, BlinkMacSystemFont, sans-serif;
```

## Design Elements

### Glassmorphism
The link cards feature a frosted glass effect using `backdrop-filter` with blur and saturation adjustments.

### Liquid Animations
Three gradient orbs float around the background with smooth, organic movements inspired by Apple's fluid interfaces.

### Smooth Interactions
All interactive elements include carefully crafted transitions using Apple's preferred cubic-bezier timing function.

### Responsive Breakpoints
- Desktop: 768px and above
- Tablet: 481px - 767px
- Mobile: 480px and below

## Browser Support

- Chrome/Edge (latest)
- Firefox (latest)
- Safari (latest)
- Opera (latest)

**Note**: Glassmorphism effects require modern browsers with backdrop-filter support.

## Credits

Created for LinkFree by following Apple's latest design trends including glassmorphism, liquid animations, and modern UI patterns.

## License

Free to use and modify for personal and commercial projects.
Binary file added Templates/Liquid/favicon.ico
Binary file not shown.
68 changes: 68 additions & 0 deletions Templates/Liquid/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Liquid Theme - Apple Inspired</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
</head>
<body>
<!-- Animated background gradient -->
<div class="background">
<div class="gradient-orb orb-1"></div>
<div class="gradient-orb orb-2"></div>
<div class="gradient-orb orb-3"></div>
</div>

<!-- Main content container -->
<div class="container">
<!-- Profile section -->
<div class="profile-section">
<div class="profile-image-wrapper">
<img src="https://i.imgur.com/t8ZX9um.jpg" alt="Profile Photo" class="profile-image">
</div>
<h1 class="profile-name">Your Name</h1>
<p class="profile-bio">Designer β€’ Developer β€’ Creator</p>
</div>

<!-- Links section -->
<div class="links-section">
<a href="#" class="link-card" target="_blank">
<span class="link-icon">🌐</span>
<span class="link-text">Website</span>
<span class="link-arrow">β†’</span>
</a>

<a href="#" class="link-card" target="_blank">
<span class="link-icon">πŸ“±</span>
<span class="link-text">Portfolio</span>
<span class="link-arrow">β†’</span>
</a>

<a href="#" class="link-card" target="_blank">
<span class="link-icon">πŸ’Ό</span>
<span class="link-text">LinkedIn</span>
<span class="link-arrow">β†’</span>
</a>

<a href="#" class="link-card" target="_blank">
<span class="link-icon">🐦</span>
<span class="link-text">Twitter</span>
<span class="link-arrow">β†’</span>
</a>

<a href="#" class="link-card" target="_blank">
<span class="link-icon">πŸ“§</span>
<span class="link-text">Email</span>
<span class="link-arrow">β†’</span>
</a>
</div>

<!-- Footer -->
<footer class="footer">
<p>Made with Liquid Theme</p>
</footer>
</div>
</body>
</html>
Binary file added Templates/Liquid/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading