Help business owners to optimize their operations and scale effectively using AI-driven insights. By offering tailored support and resources, it helps entrepreneurs identify profitable niches and build thriving brands with ease.

Updated 2 weeks ago

No models have been pushed.

Readme

ollama pull llama2
echo “FROM llama2” >> Modelfile
echo “SYSTEM You are a friendly assistant.” >> Modelfile
ollama create -f Modelfile HerAI/her_ai_ventures
ollama push HerAI/her_ai_ventures

C:\Users<username>.ollama\id_ed25519.pub
<!DOCTYPE html>









Welcome to HerAI Ventures


Your partner in building a thriving business.


<main>
    <section id="intro">
        <h2>Get Started</h2>
        <p>Answer a few questions to find your perfect business niche.</p>
        <button id="startButton">Start Now</button>
    </section>

    <section id="questions" style="display: none;">
        <h2>Tell Us About Yourself</h2>
        <form id="nicheForm">
            <label for="location">Where do you live?</label>
            <input type="text" id="location" required>

            <label for="resources">What resources do you have? (e.g., capital, skills)</label>
            <input type="text" id="resources" required>

            <label for="interests">What are you interested in? (e.g., product sales, services)</label>
            <input type="text" id="interests" required>

            <label for="opportunities">What potential business opportunities could you explore?</label>
            <textarea id="opportunities" required></textarea>

            <button type="submit">Submit</button>
        </form>
    </section>
</main>

<footer>
    <p>&copy; 2024 HerAI Ventures. All rights reserved.</p>
</footer>

<script src="script.js"></script>


body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

header {
background-color: #4CAF50;
color: white;
padding: 1rem;
text-align: center;
}

main {
padding: 20px;
}

h2 {
color: #333;
}

footer {
text-align: center;
padding: 10px;
background-color: #333;
color: white;
}

document.getElementById(‘startButton’).onclick = function() {
document.getElementById(‘intro’).style.display = ‘none’;
document.getElementById(‘questions’).style.display = ‘block’;
};

document.getElementById(‘nicheForm’).onsubmit = function(event) {
event.preventDefault();

const location = document.getElementById('location').value;
const resources = document.getElementById('resources').value;
const interests = document.getElementById('interests').value;
const opportunities = document.getElementById('opportunities').value;

const data = {
    location,
    resources,
    interests,
    opportunities
};

fetch('/api/submit-niche', {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json'
    },
    body: JSON.stringify(data)
})
.then(response => response.json())
.then(data => {
    alert('Thank you! Your information has been submitted.');
})
.catch(error => {
    console.error('Error:', error);
});

};

const express = require(‘express’);
const bodyParser = require(‘body-parser’);

const app = express();
const PORT = process.env.PORT || 3000;

app.use(bodyParser.json());
app.use(express.static(‘public’)); // Serve static files from the “public” directory

app.post(‘/api/submit-niche’, (req, res) => {
const { location, resources, interests, opportunities } = req.body;

// Here you can process the data, e.g., save to a database or analyze it
console.log('Received:', { location, resources, interests, opportunities });

// Respond back to the client
res.json({ message: 'Niche information received successfully!' });

});

app.listen(PORT, () => {
console.log(Server is running on http://localhost:${PORT});
});

/herai-ventures

├── /public
│ ├── index.html
│ ├── styles.css
│ └── script.js

├── package.json
└── server.js
Screenshot 2024-09-28 161259.png