Files
AIProd/pages/About/About.vue
2025-10-31 15:58:11 +08:00

174 lines
4.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="text-container">
<div class="top">
<div class="title">
About AIToolsFinder
</div>
<div class="little-title">
The Ultimate Global AI Tools Directory, Discover the Best New AI Products
</div>
<div class="sub-title">
Welcome to AIToolsFinder your all-in-one gateway to the world of artificial intelligence.
</div>
</div>
<div class="content">
Were more than just a directory. AIToolsFinder is designed to help you discover, learn, and apply AI in ways that truly make a difference in your personal and professional life. Whether youre a student exploring new technologies, a designer looking for creative tools, a developer in need of coding assistance, or a business team seeking automation solutionsAIToolsFinder is here to guide you.
</div>
<div class="terms-title">
Heres what youll find with us:
</div>
<div class="terms-item">
<div class="dot"></div>
<div class="item-content">
<span class="item-title">AI Tool Discovery </span>
<span class="item-text">
Thousands of carefully curated AI tools across writing, design, development, business, and entertainment.
</span>
</div>
</div>
<div class="terms-item">
<div class="dot"></div>
<div class="item-content">
<span class="item-title">Learning Resources </span>
<span class="item-text">
Tutorials, frameworks, and model recommendations to help you quickly level up your AI skills.
</span>
</div>
</div>
<div class="terms-item">
<div class="dot"></div>
<div class="item-content">
<span class="item-title">Industry Insights </span>
<span class="item-text">
Stay updated with the latest trends, breakthroughs, and real-world applications in AI.
</span>
</div>
</div>
<div class="terms-item">
<div class="dot"></div>
<div class="item-content">
<span class="item-title">Disclaimer </span>
<span class="item-text">
AIToolsFinder is the official and only website under this name. We do not operate paid groups, courses, or third-party affiliates. Please always verify youre on the official site.
</span>
</div>
</div>
<div class="terms-item">
<div class="dot"></div>
<div class="item-content">
<span class="item-title">Get in Touch </span>
<span class="item-text">Got a new AI tool to share, want to collaborate, or have ideas for improving AIToolsFinder? Reach us anytime at </span>
<span class="item-link"> corina@inziqi.com.</span>
</div>
</div>
<div class="bottom-line">
<div class="bottom-line-left"></div>
<div class="bottom-text">
Lets explore the future of AItogether
</div>
<div class="bottom-line-right"></div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
// 数据项
}
},
methods: {
// 方法
}
}
</script>
<style lang="scss" scoped>
.sub-title {
color: #3a4a65;
font-size: 20px;
font-weight: 600;
font-family: 'Poppins-SemiBold', serif;
margin-top: 30px;
text-align: center;
}
.content {
color: #64748B;
font-size: 18px;
font-family: 'Poppins-Medium', serif;
}
.terms-title {
color: #64748B;
font-size: 18px;
font-family: 'Poppins-Bold', serif;
margin-top: 30px;
margin-bottom: 20px;
font-weight: bold;
}
.little-title {
font-family: 'Poppins-Medium', serif;
font-size: 18px;
color: #64748B;
margin-top: 20px;
text-align: center;
}
.terms-item {
display: flex;
align-items: flex-start;
margin-bottom: 25px;
.dot {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
background: $header-backgroungd;
margin-right: 14px;
margin-top: 7px;
flex-shrink: 0;
}
.item-content {
flex: 1;
}
.item-title {
color: #64748B;
font-size: 18px;
font-family: 'Poppins-Bold', serif;
font-weight: bold;
}
.item-text {
color: #64748B;
font-size: 18px;
font-family: 'Poppins-Medium', serif;
}
.item-link {
color: #7B61FF;
font-size: 18px;
font-family: 'Poppins-Medium', serif;
}
}
.bottom-line {
margin-top: 75px;
display: flex;
justify-content: center;
align-items: center;
gap: 23px;
.bottom-text {
font-weight: 600;
font-size: 28px;
font-family: 'Poppins-SemiBold', serif;
@include text-gradient(90deg, #2563eb, 22%, #7B61FF, 73%);
}
.bottom-line-left {
width: 120px;
height: 8px;
background: url("/about/linear-line-left.png") no-repeat center/contain;
}
.bottom-line-right {
width: 120px;
height: 8px;
background: url("/about/linear-line-right.png") no-repeat center/contain;
}
}
</style>