Calculator Tools Calculator Tools
Create

Repix UF - Sell your used stuff with ease!

Nov 2, 2023

About this app

An innovative platform that uses advanced image recognition with AI to identify and value used goods, especially things that are often left unused in the home, like old mobiles.

Repix UF - Sell your used stuff with ease! Welcome to Repix UF! πŸš€ Create your ad with just a click, using advanced AI technology. πŸ’‘ Create an Ad! Ad Preview πŸ“

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Repix UF - Sell your used stuff with ease!</title>
<meta name="description" content="An innovative platform that uses advanced image recognition with AI to identify and value used goods, especially things that are often left unused in the home, like old mobiles.">
<meta name="keywords" content="Repix, AI, used goods, selling, buy, AI-based, ads, reuse, sustainable consumption">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
// Mockup for the AI image recognition and ad creation
const createAd = (image) => {
const itemDescription = "This is a detailed and attractive product description based on AI image recognition and condition assessment. πŸ“±βœ¨";
const optimalPriceRange = "200 - 250 $";
const adTitle = "Selling an old, but still shiny mobile! πŸ’ΈπŸš€";
const adContent = `${adTitle}\n\n${itemDescription}\n\nPrice: ${optimalPriceRange}`;
return adContent;
};

document.getElementById('createAdButton').addEventListener('click', function() {
const adContent = createAd(null);
document.getElementById('adContent').innerHTML = adContent.replace(/\n/g, "<br/>");
document.getElementById('adPreview').classList.remove('d-none');
});
});
} catch (error) {
throw error;
}
</script>

<style>
body {
background: linear-gradient(45deg, #f3ec78, #af4261);
color: #fff;
font-family: 'Courier New', Courier, monospace;
}
.container {
margin-top: 50px;
}
.preview {
background: #fff;
color: #000;
padding: 20px;
border-radius: 10px;
margin-top: 20px;
}
.preview .title {
font-size: 24px;
font-weight: bold;
}
.preview .price {
font-size: 20px;
font-weight: bold;
}
</style>
</head>
<body>
<div id="main-container" class="container text-center">
<h1>Welcome to Repix UF! πŸš€</h1>
<p>Create your ad with just a click, using advanced AI technology. πŸ’‘</p>
<button id="createAdButton" class="btn btn-light">Create an Ad!</button>
<div id="adPreview" class="preview d-none">
<h2 class="title">Ad Preview πŸ“</h2>
<p id="adContent"></p>
</div>
</div>
</body>
</html>