Back to blocks

Create TikTok Page

4.0
enWeb DevelopmentTikTokLanding PageWeb Design

Prompt

Create a TikTok like landing page. 

Résultat Généré

import React from 'react';

const App = () => {
  return (
    <div className="min-h-screen bg-black text-white font-sans">
      {/* Navigation */}
      <nav className="flex justify-between items-center p-4 border-b border-gray-800">
        <div className="text-2xl font-bold">TikTok</div>
        <div className="flex space-x-4">
          <button className="bg-white text-black px-4 py-2 rounded-full">Login</button>
          <button className="bg-red-600 text-white px-4 py-2 rounded-full">Sign Up</button>
        </div>
      </nav>

      {/* Hero Section */}
      <section className="flex flex-col items-center justify-center h-[80vh] bg-gradient-to-b from-black to-gray-900">
        <h1 className="text-6xl font-bold mb-4">Welcome to TikTok</h1>
        <p className="text-xl mb-8">Create, share, and discover short videos.</p>
        <button className="bg-red-600 text-white px-8 py-3 rounded-full text-lg">Download Now</button>
      </section>

      {/* Features Section */}
      <section className="py-20 bg-black">
        <div className="container mx-auto px-4">
          <h2 className="text-4xl font-bold text-center mb-12">Features</h2>
          <div className="grid grid-cols-1 md:grid-cols-3 gap-8">
            <div className="bg-gray-800 p-6 rounded-lg">
              <img src="https://placehold.co/100x100" alt="Feature" className="mx-auto mb-4" />
              <h3 className="text-xl font-bold mb-2">Create Videos</h3>
              <p className="text-gray-400">Easily create and edit short videos with our powerful tools.</p>
            </div>
            <div className="bg-gray-800 p-6 rounded-lg">
              <img src="https://placehold.co/100x100" alt="Feature" className="mx-auto mb-4" />
              <h3 className="text-xl font-bold mb-2">Share Moments</h3>
              <p className="text-gray-400">Share your videos with friends and the world instantly.</p>
            </div>
            <div className="bg-gray-800 p-6 rounded-lg">
              <img src="https://placehold.co/100x100" alt="Feature" className="mx-auto mb-4" />
              <h3 className="text-xl font-bold mb-2">Discover Content</h3>
              <p className="text-gray-400">Discover trending videos and creators from around the globe.</p>
            </div>
          </div>
        </div>
      </section>

      {/* Testimonials Section */}
      <section className="py-20 bg-gray-900">
        <div className="container mx-auto px-4">
          <h2 className="text-4xl font-bold text-center mb-12">What Users Say</h2>
          <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
            <div className="bg-gray-800 p-6 rounded-lg">
              <p className="text-gray-400 mb-4">"TikTok has changed the way I share my creativity. It's addictive!"</p>
              <div className="flex items-center">
                <img src="https://placehold.co/50x50" alt="User" className="rounded-full mr-4" />
                <span className="font-bold">John Doe</span>
              </div>
            </div>
            <div className="bg-gray-800 p-6 rounded-lg">
              <p className="text-gray-400 mb-4">"I discovered so many amazing creators on TikTok. It's inspiring!"</p>
              <div className="flex items-center">
                <img src="https://placehold.co/50x50" alt="User" className="rounded-full mr-4" />
                <span className="font-bold">Jane Smith</span>
              </div>
            </div>
            <div className="bg-gray-800 p-6 rounded-lg">
              <p className="text-gray-400 mb-4">"The editing tools are so easy to use. I love creating content on TikTok."</p>
              <div className="flex items-center">
                <img src="https://placehold.co/50x50" alt="User" className="rounded-full mr-4" />
                <span className="font-bold">Michael Brown</span>
              </div>
            </div>
          </div>
        </div>
      </section>

      {/* Download Section */}
      <section className="py-20 bg-black">
        <div className="container mx-auto px-4 text-center">
          <h2 className="text-4xl font-bold mb-8">Join the TikTok Community</h2>
          <p className="text-xl mb-8">Download the app and start creating today.</p>
          <div className="flex justify-center space-x-4">
            <button className="bg-white text-black px-8 py-3 rounded-full text-lg">iOS</button>
            <button className="bg-white text-black px-8 py-3 rounded-full text-lg">Android</button>
          </div>
        </div>
      </section>

      {/* Footer */}
      <footer className="py-10 bg-gray-900">
        <div className="container mx-auto px-4 text-center">
          <p className="text-gray-400">© 2025 TikTok. All rights reserved.</p>
        </div>
      </footer>
    </div>
  );
};

export default App;

Plus de Recommandations

Voir Tout

Next.js Vape Website

Web Developmenten
4.0

I want to create a simpple webiste in nextjs for vape listing and deatil anc checkout page using striip there as well stunning landing page to attract and add to cart then user ca place order Manchester Vape website name

Next.jsVapeStripe19/06/2025

React Backoffice Frontend Guide

Web Developmenten
4.0

A backoffice frontend built in React 18 + Vite with Tailwind CSS and DaisyUI, Zustand for global state, TanStack Query for API state, React Hook Form with Zod for validation, and Axios for HTTP. The UI consists of: A dashboard (placeholder for future analytics) Games module: manage game metadata and brand availability Brands module: create/edit brands, assign games, apply jurisdiction rules Regulation module: read-only view of jurisdiction rules Players module: read-only, filterable player list Game sessions: read-only session explorer by brand/player Bets: read-only history table with filters Errored bets: read-only view of failed transactions and error details Admin users: single-user management (MVP) Layout is responsive with dark/light mode. Design system follows Mixpanel-style dashboards with interactive tables, forms, and consistent UI primitives. All modules are isolated under /features, with shared components, services, and store logic modularized.

ReactTailwind CSSZustand16/06/2025

React Backoffice Frontend Guide

Web Developmenten
4.0

A backoffice frontend built in React 18 + Vite with Tailwind CSS and DaisyUI, Zustand for global state, TanStack Query for API state, React Hook Form with Zod for validation, and Axios for HTTP. The UI consists of: A dashboard (placeholder for future analytics) Games module: manage game metadata and brand availability Brands module: create/edit brands, assign games, apply jurisdiction rules Regulation module: read-only view of jurisdiction rules Players module: read-only, filterable player list Game sessions: read-only session explorer by brand/player Bets: read-only history table with filters Errored bets: read-only view of failed transactions and error details Admin users: single-user management (MVP) Layout is responsive with dark/light mode. Design system follows Mixpanel-style dashboards with interactive tables, forms, and consistent UI primitives. All modules are isolated under /features, with shared components, services, and store logic modularized.

ReactViteTailwind CSS16/06/2025

CRM Web App Development

Web Developmenten
4.0

Create a responsive web app which maintains the CRM data like customer name, phone number , whatsapp number, location, Remarks etc.. so that i can send the brochure automatically to the customer added, through whatsapp api the message should be auto generated based on the keywords in the remarks. make it more professional and beautiful

CRMWeb AppWhatsApp API13/06/2025

MercadoPago Payer Info with React Hooks

Web Developmenten
4.0

generate mercadopago payer information capture with validations in input fields, without use form , with react hooks

MercadoPagoReact HooksInput Validation12/06/2025

Create Video Translation Site

Web Developmenten
4.0

Create a video translation website by adding the "Add video file" and "Add video link" options. Upload the link and support all social media links. Add a language selection feature, then add all the languages ​​you want to translate the video into. Clicking the "Translate video" button will upload the translated video. pip install gradio_client

video translationsocial medialanguage selection12/06/2025