Brique Shares


Fractional Home Equity

Introducing Fractional Property shares

Your path to consistent income.
Up to 8.5% APR
At Brick Shares, we're redefining real estate ownership. Our mission is to make property investment accessible, affordable, and profitable for everyone

Brique Shares Holdings Tracker

The tracker shows the value of the assets owned by Brique Shares and the current price per share, which investors can buy in any quantity. The 8.5% annual return (paid monthly) is separate from asset growth, so investors earn steady monthly income plus long-term share appreciation. With High Liquidity, shares can be sold quickly without needing to sell an entire property, giving investors easy and flexible access to their capital.

Portfolio Performance

Portfolio Performance

Brique Shares Holdings Monthly Tracker

$58.42
Current Value
+$0.15
Daily Change
-0.1%
Total Return
5-Day Price Movement
9/10
$58.47
9/11
$58.42
9/12
$58.50
9/13
$58.27
9/14
$58.42
September 14, 2025$58.42
September 13, 2025$58.27
September 12, 2025$58.50
September 11, 2025$58.42
September 10, 2025$58.47
Last updated: September 14, 2025

Monthly Income with Brick Shares

We offer individuals the opportunity to profit from high-quality, income-generating properties across prime locations. Through our innovative model, you can enjoy steady rental income while building long-term wealth — all with a fraction of the capital traditionally required.

Private Partnership
Become a Partner. Share in the Growth.
• Monthly rental income
• Profit at property sale
• Diversified property portfolio

Private Loan
Earn Fixed Returns. Secured by Property.
• Fixed annual return paid monthly
• Flexible terms
• Secured by real estate


Key Benefits

o Accessibility
o Diversification
o Equity
o Passive Income
o Lower Risk
o Real Estate Exposure
o Professional Management
This model offer an attractive alternative for investors looking to enter the real estate market without significant upfront investment or day-to-day management responsibilities.

Compound Growth Calculator

Your Investment Projection
€0
Final Amount
€0
Total Invested
€0
Total Gains
Key Years
function calc() { try { var amount = Number(document.getElementById('amount').value); var rate = Number(document.getElementById('rate').value); var years = Number(document.getElementById('years').value); var monthly = Number(document.getElementById('monthly').value); if (!amount || !rate || !years) { alert('Please fill all required fields'); return; } var balance = amount; var totalInvested = amount; var monthlyRate = rate / 100 / 12; var breakdown = []; for (var year = 1; year <= years; year++) { var startBalance = balance; var yearlyContrib = monthly * 12; for (var month = 0; month < 12; month++) { balance = balance * (1 + monthlyRate) + monthly; } totalInvested = totalInvested + yearlyContrib; if (year === 1 || year === 5 || year === 10 || year === years || year % 5 === 0) { breakdown.push({ year: year, balance: balance, gain: balance - startBalance - yearlyContrib }); } } var totalGains = balance - totalInvested; document.getElementById('final').innerHTML = '€' + Math.round(balance).toLocaleString(); document.getElementById('invested').innerHTML = '€' + Math.round(totalInvested).toLocaleString(); document.getElementById('gains').innerHTML = '€' + Math.round(totalGains).toLocaleString(); var breakdownHtml = ''; for (var i = 0; i < breakdown.length; i++) { breakdownHtml += '
'; breakdownHtml += 'Year ' + breakdown[i].year + ''; breakdownHtml += '€' + Math.round(breakdown[i].balance).toLocaleString() + ''; breakdownHtml += '
'; } document.getElementById('breakdown-list').innerHTML = breakdownHtml; document.getElementById('result').style.display = 'block'; } catch (e) { alert('Error: ' + e.message); } }