开源一个AI导航站工具-jobleap4u

整体效果

安装方法

  1. 打开命令行或终端,执行下面命令,将代码仓库克隆到本地:
bash 复制代码
git clone --depth 1 https://github.com/XiaomingX/jobleap4u
  1. 进入项目文件夹:
bash 复制代码
cd jobleap4u
  1. 启动开发服务器(需要提前安装 Vercel CLI 工具):
bash 复制代码
vercel dev
  1. 启动成功后,打开浏览器访问:
text 复制代码
http://localhost:3000

即可看到本地运行的AI导航站页面。

线上使用方法

  • 如果想直接部署到线上环境,可以在Vercel网站登录后,选择"导入Git仓库",然后选择本项目的GitHub地址,Vercel会自动帮你完成部署。完成后就有线上访问地址。

拓展与更新

  • 在index.html之中,你可以参考模版,更新自己的模块,譬如补充下面代码之中的url地址、logo图、简介
ini 复制代码
                    <div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://dribbble.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://dribbble.com/">
                        <div class="xe-comment-entry">
                            <a class="xe-user-img">
                                <img data-src="../assets/images/logos/dribbble.png" class="lozad img-circle" width="40">
                            </a>
                            <div class="xe-comment">
                                <a href="#" class="xe-user-name overflowClip_1">
                                    <strong>Dribbble</strong>
                                </a>
                                <p class="overflowClip_2">全球UI设计师作品分享平台。</p>
                            </div>
                        </div>
                    </div>
ini 复制代码
                <div class="col-sm-3">
                    <div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.pinterest.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.pinterest.com/">
                        <div class="xe-comment-entry">
                            <a class="xe-user-img">
                                <img data-src="https://icon.jobleap4u.com/api/fav/?url=pinterest.com" class="lozad img-circle" width="40">
                            </a>
                            <span class="label label-info" data-toggle="tooltip" data-placement="left" title="" data-original-title="Hello I am a Tooltip"></span>
                            <div class="xe-comment">
                                <a href="#" class="xe-user-name overflowClip_1">
                                    <strong>Pinterest</strong>
                                </a>
                                <p class="overflowClip_2">全球美图收藏采集站</p>
                            </div>
                        </div>
                    </div>
                </div>
相关推荐
apollo_qwe2 分钟前
前端缓存深度解析:从基础到进阶的实现方式与实践指南
前端
周星星日记10 分钟前
vue中hash模式和history模式的区别
前端·面试
Light6010 分钟前
Vue 高阶优化术:v-bind 与 v-on 的实战妙用与思维跃迁
前端·低代码·vue3·v-bind·组件封装·v-on·ai辅助开发
周星星日记11 分钟前
5.为什么vue中使用query可以保留参数
前端·vue.js
lebornjose11 分钟前
javascript - webgl中绑定(bind)缓冲区的逻辑是什么?
前端·webgl
小丑75513 分钟前
Vue 转盘抽奖 transform
面试
瘦的可以下饭了16 分钟前
Day05- CSS 标准流、浮动、Flex布局
前端
前端无涯18 分钟前
React中setState后获取更新后值的完整解决方案
前端·react.js
西愚wo18 分钟前
前端开发者必备:在浏览器控制台批量提取HTML表单字段名(Label)
前端
小鸡吃米…1 小时前
Python - 类属性
java·前端·python