Custom websites and web applications for businesses and individuals.
I'm a passionate Full-Stack Developer and aspiring software engineer, specializing in building custom websites and web applications for businesses and individuals. I have experience in HTML, CSS, JavaScript, Python, and modern frameworks, allowing me to create fast, responsive, and user-friendly websites.
Alongside my studies, I design and develop websites for clients, offering modern, responsive, and SEO-friendly solutions tailored to their needs. Whether it's a business landing page, an e-commerce store, or a custom web application, I focus on delivering high-performance and visually appealing designs.
Beyond coding, I'm dedicated to fitness and combat sports, training in the gym five days a week and practicing karate. I'm also considering adding judo and boxing to my routine.
After completing my A-levels, I plan to pursue a software engineering apprenticeship while expanding my web development business and freelancing opportunities.
// Stack.js reactive counter implementation
const counterState = Stack.createState(0);
Stack.createEffect(() => {
document.querySelector('.counter-display').textContent = counterState.value;
});
// Stack.js todo component
const TodoApp = Stack.component({
state: {
todos: []
},
methods: {
addTodo(text) {
this.state.todos.push({ id: Date.now(), text, completed: false });
},
toggleTodo(id) {
const todo = this.state.todos.find(t => t.id === id);
todo.completed = !todo.completed;
}
}
});
// Stack.js theme manager
const ThemeManager = Stack.service({
state: {
currentTheme: 'dark'
},
methods: {
setTheme(theme) {
this.state.currentTheme = theme;
document.body.setAttribute('data-theme', theme);
}
}
});
If you're looking for a professional, modern website or web application, feel free to reach out!
You can also email me directly at:
contact@dramblock.co.uk