For the record webstudio tool have saved us alot of time to buil and deploy our landing page, part of the bounty goals in ETHDublin hackathon. This guide explains how we utilized the WebStudio tool to easily generate the Plutus webpage. WebStudio is a powerful web design tool that allows users to create and customize websites with ease, using a visual editor and pre-built components.
First, visit WebStudio and log in to your account. If you don't have an account, you will need to sign up for one.
Once logged in, start a new project by clicking the "New Project" button. Give your project a name, for instance, "Plutus Website."
In the project dashboard, set up the basic structure of your webpage. Define the main sections of your site:
- Navigation Bar
- Hero Section
- Features Section
- Testimonials Section
- Footer Section
Use the drag-and-drop interface to add various components to your webpage. Customize each component using the properties panel.
- Add a navigation bar component.
- Upload your logo using the image component.
- Add navigation links and buttons as needed.
- Add a hero section with a large title, subtitle, and a call-to-action button.
- Customize the background, text colors, and fonts.
- Add a features section to highlight the key benefits of Plutus.
- Use columns to organize feature descriptions and icons.
- Add a footer section with relevant links and contact information.
Apply custom styles using the styling panel. WebStudio supports CSS and offers a variety of built-in styles to enhance the look and feel of your site.
html {
scroll-behavior: smooth;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
}
.bg-gray-100 {
background-color: rgb(249, 250, 251);
}
.text-indigo-950 {
color: rgb(30, 27, 75);
}
.font-medium {
font-weight: 500;
}
.shadow-md {
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}