免费使用poe的Claude3截图ui生成html代码

最近Claude3发布了,本想去官网体验,结果官网把我的账号给封了,重新注册后跟chatgpt一样要手机号码验证,还不支持我们这个地区,没办法,打开了ai集中营poe.com,发现已经免费集成了Claude3。

opus是收费的,但是Sonnet是免费的,于是我就是发给他一张网站的截图帮我生成html代码。

截图是

生成的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UI Design</title>
<style>
/* 重置浏览器默认样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* 页面布局 */
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: #f2f2f2;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
text-decoration: none;
color: #333;
}
main {
display: flex;
flex-grow: 1;
padding: 20px;
}
.left-panel {
width: 250px;
background-color: #f2f2f2;
padding: 20px;
}
.user-info {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.user-info img {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 10px;
}
.shortcuts {
display: flex;
flex-direction: column;
}
.shortcut {
display: flex;
align-items: center;
padding: 10px;
margin-bottom: 10px;
background-color: #fff;
border-radius: 5px;
cursor: pointer;
}
.shortcut .icon {
width: 30px;
height: 30px;
margin-right: 10px;
background-color: #ccc; /* 替换为实际图标 */
}
.right-panel {
flex-grow: 1;
padding: 20px;
}
.trend-analysis,
.summary,
.task-list,
.trend-chart {
margin-bottom: 20px;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.summary-card {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.metric {
text-align: center;
}
.task-list ul {
list-style: none;
}
.task-list li {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.task-list .icon {
width: 20px;
height: 20px;
margin-right: 10px;
background-color: #ccc; /* 替换为实际图标 */
}
footer {
padding: 10px...点击查看剩余70%
网友评论