Back to blocks

Next.js Vape Website

4.0
enWeb DevelopmentNext.jsVapeStripe

Prompt

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

Résultat Généré

import React from 'react';

const App = () => {
  return (
    <div className="bg-gray-100 min-h-screen">
      {/* Landing Page */}
      <header className="bg-blue-600 text-white py-10">
        <div className="container mx-auto px-6 text-center">
          <h1 className="text-5xl font-bold mb-4">Manchester Vape</h1>
          <p className="text-xl">Your Ultimate Destination for Premium Vaping Products</p>
        </div>
      </header>

      {/* Product Listing */}
      <section className="container mx-auto px-6 py-10">
        <h2 className="text-3xl font-bold text-center mb-8">Our Products</h2>
        <div className="grid grid-cols-1 md:grid-cols-3 gap-6">
          {[1, 2, 3].map((product) => (
            <div key={product} className="bg-white shadow-lg rounded-lg overflow-hidden">
              <img src="https://placehold.co/300X300" alt="Product" className="w-full" />
              <div className="p-6">
                <h3 className="text-xl font-bold mb-2">Vape Product {product}</h3>
                <p className="text-gray-700">High-quality vaping experience.</p>
                <button className="mt-4 bg-blue-600 text-white py-2 px-4 rounded hover:bg-blue-700">Add to Cart</button>
              </div>
            </div>
          ))}
        </div>
      </section>

      {/* Product Detail */}
      <section className="bg-white py-10">
        <div className="container mx-auto px-6">
          <h2 className="text-3xl font-bold text-center mb-8">Product Detail</h2>
          <div className="flex flex-col md:flex-row items-center">
            <img src="https://placehold.co/300X300" alt="Product Detail" className="w-full md:w-1/2" />
            <div className="md:ml-8 mt-6 md:mt-0">
              <h3 className="text-2xl font-bold mb-4">Vape Product 1</h3>
              <p className="text-gray-700 mb-4">Experience the best vaping with our top-notch product.</p>
              <button className="bg-blue-600 text-white py-2 px-4 rounded hover:bg-blue-700">Add to Cart</button>
            </div>
          </div>
        </div>
      </section>

      {/* Checkout */}
      <section className="bg-gray-200 py-10">
        <div className="container mx-auto px-6">
          <h2 className="text-3xl font-bold text-center mb-8">Checkout</h2>
          <div className="bg-white p-6 rounded-lg shadow-lg">
            <h3 className="text-2xl font-bold mb-4">Order Summary</h3>
            <p className="text-gray-700 mb-4">Total: $99.99</p>
            <button className="bg-green-600 text-white py-2 px-4 rounded hover:bg-green-700">Place Order</button>
          </div>
        </div>
      </section>

      {/* Footer */}
      <footer className="bg-blue-600 text-white py-6">
        <div className="container mx-auto px-6 text-center">
          <p>&copy; 2025 Manchester Vape. All rights reserved.</p>
        </div>
      </footer>
    </div>
  );
};

export default App;

Plus de Recommandations

Voir Tout

Create TikTok Page

Web Developmenten
4.0

Create a TikTok like landing page.

TikTokLanding PageWeb Design17/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