<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeZillaYe - Twitter Style</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
<!-- Header -->
<header class="bg-white shadow-md fixed top-0 w-full z-10">
<div class="container mx-auto px-4 py-2 flex justify-between items-center">
<a href="#" class="text-xl font-bold text-blue-500">CodeZillaYe</a>
<nav class="space-x-4">
<a href="#" class="text-gray-600 hover:text-blue-500">Home</a>
<a href="#" class="text-gray-600 hover:text-blue-500">Explore</a>
<a href="#" class="text-gray-600 hover:text-blue-500">Notifications</a>
<a href="#" class="text-gray-600 hover:text-blue-500">Messages</a>
</nav>
</div>
</header>
<!-- Main Content -->
<div class="container mx-auto px-4 pt-20 flex">
<!-- Sidebar -->
<aside class="w-1/4">
<div class="bg-white p-4 rounded-lg shadow-md">
<h2 class="text-xl font-bold mb-4">Profile</h2>
<div class="flex items-center mb-4">
<img src="https://codezillaye.com/wp-content/uploads/2024/07/logo-2.png" alt="Profile Picture" class="w-12 h-12 rounded-full mr-4">
<div>
<h3 class="text-lg font-semibold">CodeZillaYe/h3>
<p class="text-gray-600">@CodeZillaYep>
</div>
</div>
<button class="w-full bg-blue-500 text-white py-2 rounded-lg">Tweet</button>
</div>
</aside>
<!-- Main Feed -->
<main class="w-1/2 mx-4">
<!-- Tweet Box -->
<div class="bg-white p-4 rounded-lg shadow-md mb-4">
<textarea class="w-full p-2 border rounded-lg" placeholder="What's happening?"></textarea>
<button class="mt-2 bg-blue-500 text-white py-2 px-4 rounded-lg">Tweet</button>
</div>
<!-- Tweet -->
<div class="bg-white p-4 rounded-lg shadow-md mb-4">
<div class="flex items-center mb-4">
<img src="https://codezillaye.com/wp-content/uploads/2024/07/logo-2.png" alt="Profile Picture" class="w-10 h-10 rounded-full mr-4">
<div>
<h3 class="text-lg font-semibold">CodeZillaYe</h3>
<p class="text-gray-600">@CodeZillaYe - 2h</p>
</div>
</div>
<p>This is a tweet on CodeZillaYe's Twitter-like page!</p>
</div>
</main>
<!-- Right Sidebar -->
<aside class="w-1/4">
<div class="bg-white p-4 rounded-lg shadow-md">
<h2 class="text-xl font-bold mb-4">Trending</h2>
<ul>
<li class="mb-4">
<p class="text-blue-500 font-bold">#TrendingTopic1</p>
<p class="text-gray-600 text-sm">123k Tweets</p>
</li>
<li class="mb-4">
<p class="text-blue-500 font-bold">#TrendingTopic2</p>
<p class="text-gray-600 text-sm">98k Tweets</p>
</li>
</ul>
</div>
</aside>
</div>
</body>
</html>